-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move updater and unit tests to dockerized runner (#4028)
* extended unit_tests and changed to dockerized runner * added branch to run units * fixing unit-tests-output * online output * command not found fix * added stm logging * cleaned output * Updated updater test to work on dockerized runner * Test run for changed actions * small refactor of run_unit_tests * Final test of jobs * Checked * On-failure actions runs only on fail * Set action trigger to pull request * Bumped timeout a little * Removed extra steps * Removed stm monitor, as it's now part of docker-runner * fix: testops without stm_monitoring * fix: timeout extended Co-authored-by: あく <[email protected]>
- Loading branch information
Showing
3 changed files
with
131 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,39 @@ | ||
name: 'Updater test' | ||
on: | ||
pull_request: | ||
|
||
env: | ||
TARGETS: f7 | ||
DEFAULT_TARGET: f7 | ||
FBT_TOOLCHAIN_PATH: /opt | ||
FBT_TOOLCHAIN_PATH: /opt/ | ||
FBT_GIT_SUBMODULE_SHALLOW: 1 | ||
|
||
jobs: | ||
test_updater_on_bench: | ||
runs-on: [self-hosted, FlipperZeroUpdaterTest] | ||
runs-on: [self-hosted, FlipperZeroTest ] | ||
steps: | ||
- name: 'Wipe workspace' | ||
run: find ./ -mount -maxdepth 1 -exec rm -rf {} \; | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
submodules: false | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: 'Get flipper from device manager (mock)' | ||
id: device | ||
run: | | ||
echo "flipper=auto" >> $GITHUB_OUTPUT | ||
echo "stlink=0F020D026415303030303032" >> $GITHUB_OUTPUT | ||
- name: 'Flashing target firmware' | ||
id: first_full_flash | ||
timeout-minutes: 10 | ||
timeout-minutes: 20 | ||
run: | | ||
source scripts/toolchain/fbtenv.sh | ||
./fbt flash_usb_full PORT=${{steps.device.outputs.flipper}} FORCE=1 | ||
python3 scripts/testops.py -p=${{steps.device.outputs.flipper}} -t=180 await_flipper | ||
python3 scripts/testops.py -t=180 await_flipper | ||
./fbt flash_usb_full FORCE=1 | ||
- name: 'Validating updater' | ||
id: second_full_flash | ||
timeout-minutes: 10 | ||
if: success() | ||
run: | | ||
source scripts/toolchain/fbtenv.sh | ||
./fbt flash_usb PORT=${{steps.device.outputs.flipper}} FORCE=1 | ||
python3 scripts/testops.py -p=${{steps.device.outputs.flipper}} -t=180 await_flipper | ||
- name: 'Get last release tag' | ||
id: release_tag | ||
if: failure() | ||
run: | | ||
echo "tag=$(git tag -l --sort=-version:refname | grep -v "rc\|RC" | head -1)" >> $GITHUB_OUTPUT | ||
- name: 'Wipe workspace' | ||
run: find ./ -mount -maxdepth 1 -exec rm -rf {} \; | ||
python3 scripts/testops.py -t=180 await_flipper | ||
./fbt flash_usb FORCE=1 | ||
python3 scripts/testops.py -t=180 await_flipper | ||
- name: 'Checkout latest release' | ||
uses: actions/checkout@v4 | ||
if: failure() | ||
with: | ||
fetch-depth: 1 | ||
ref: ${{ steps.release_tag.outputs.tag }} | ||
|
||
- name: 'Flash last release' | ||
if: failure() | ||
run: | | ||
./fbt flash SWD_TRANSPORT_SERIAL=${{steps.device.outputs.stlink}} FORCE=1 | ||
- name: 'Wait for flipper and format ext' | ||
if: failure() | ||
run: | | ||
source scripts/toolchain/fbtenv.sh | ||
python3 scripts/testops.py -p=${{steps.device.outputs.flipper}} -t=180 await_flipper | ||
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} format_ext |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters