UnitTests: removed all continue-on-error lines (#1946)
* removed all continue-on-error lines * Github: add assets deployment after format Co-authored-by: Konstantin Volkov <k.volkov@flipperdevices.com> Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
		
							parent
							
								
									4b921803cb
								
							
						
					
					
						commit
						09b622d4ae
					
				
							
								
								
									
										8
									
								
								.github/workflows/unit_tests.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								.github/workflows/unit_tests.yml
									
									
									
									
										vendored
									
									
								
							| @ -24,33 +24,29 @@ jobs: | ||||
| 
 | ||||
|       - name: 'Compile unit tests firmware' | ||||
|         id: compile | ||||
|         continue-on-error: true | ||||
|         run: | | ||||
|           FBT_TOOLCHAIN_PATH=/opt ./fbt flash OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1 | ||||
| 
 | ||||
|       - name: 'Wait for flipper to finish updating' | ||||
|         id: connect | ||||
|         if: steps.compile.outcome == 'success' | ||||
|         continue-on-error: true | ||||
|         run: | | ||||
|           python3 ./scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}} | ||||
| 
 | ||||
|       - name: 'Format flipper SD card' | ||||
|         id: format | ||||
|         if: steps.connect.outcome == 'success' | ||||
|         continue-on-error: true | ||||
|         run: | | ||||
|           ./scripts/storage.py -p ${{steps.device.outputs.flipper}} format_ext | ||||
| 
 | ||||
|       - name: 'Copy unit tests to flipper' | ||||
|       - name: 'Copy assets and unit tests data to flipper' | ||||
|         id: copy | ||||
|         if: steps.format.outcome == 'success' | ||||
|         continue-on-error: true | ||||
|         run: | | ||||
|           ./scripts/storage.py -p ${{steps.device.outputs.flipper}} send assets/resources /ext | ||||
|           ./scripts/storage.py -p ${{steps.device.outputs.flipper}} send assets/unit_tests /ext/unit_tests | ||||
| 
 | ||||
|       - name: 'Run units and validate results' | ||||
|         if: steps.copy.outcome == 'success' | ||||
|         continue-on-error: true | ||||
|         run: | | ||||
|           python3 ./scripts/testing/units.py ${{steps.device.outputs.flipper}} | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Konstantin Volkov
						Konstantin Volkov