GitHub: update unit_tests workflow steps to always re-flash device (#2150)
Co-authored-by: Konstantin Volkov <k.volkov@flipperdevices.com> Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							361ca8b750
						
					
				
				
					commit
					84ba2690a5
				
			
							
								
								
									
										12
									
								
								.github/workflows/unit_tests.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										12
									
								
								.github/workflows/unit_tests.yml
									
									
									
									
										vendored
									
									
								
							| @@ -72,12 +72,12 @@ jobs: | ||||
|  | ||||
|       - name: 'Get last release tag' | ||||
|         id: release_tag | ||||
|         if: success() | ||||
|         if: always() | ||||
|         run: | | ||||
|           echo "tag=$(git tag -l --sort=-version:refname | grep -v "rc\|RC" | head -1)" >> $GITHUB_OUTPUT | ||||
|  | ||||
|       - name: 'Decontaminate previous build leftovers' | ||||
|         if: success() | ||||
|         if: always() | ||||
|         run: | | ||||
|           if [ -d .git ]; then | ||||
|             git submodule status || git checkout "$(git rev-list --max-parents=0 HEAD | tail -n 1)" | ||||
| @@ -85,25 +85,25 @@ jobs: | ||||
|  | ||||
|       - name: 'Checkout latest release' | ||||
|         uses: actions/checkout@v3 | ||||
|         if: success() | ||||
|         if: always() | ||||
|         with: | ||||
|           fetch-depth: 0 | ||||
|           ref: ${{ steps.release_tag.outputs.tag }} | ||||
|  | ||||
|       - name: 'Flash last release' | ||||
|         if: success() | ||||
|         if: always() | ||||
|         run: | | ||||
|           ./fbt flash OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1 | ||||
|  | ||||
|       - name: 'Wait for flipper to finish updating' | ||||
|         if: success() | ||||
|         if: always() | ||||
|         run: | | ||||
|           source scripts/toolchain/fbtenv.sh | ||||
|           python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}} | ||||
|  | ||||
|       - name: 'Format flipper SD card' | ||||
|         id: format | ||||
|         if: success() | ||||
|         if: always() | ||||
|         run: | | ||||
|           source scripts/toolchain/fbtenv.sh | ||||
|           python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} format_ext | ||||
|   | ||||
		Reference in New Issue
	
	Block a user