mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-26 03:39:58 -07:00
* 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: あく <alleteam@gmail.com>
40 lines
981 B
YAML
40 lines
981 B
YAML
name: 'Updater test'
|
|
on:
|
|
pull_request:
|
|
|
|
env:
|
|
TARGETS: f7
|
|
DEFAULT_TARGET: f7
|
|
FBT_TOOLCHAIN_PATH: /opt/
|
|
FBT_GIT_SUBMODULE_SHALLOW: 1
|
|
|
|
jobs:
|
|
test_updater_on_bench:
|
|
runs-on: [self-hosted, FlipperZeroTest ]
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: 'Flashing target firmware'
|
|
id: first_full_flash
|
|
timeout-minutes: 20
|
|
run: |
|
|
source scripts/toolchain/fbtenv.sh
|
|
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
|
|
python3 scripts/testops.py -t=180 await_flipper
|
|
./fbt flash_usb FORCE=1
|
|
python3 scripts/testops.py -t=180 await_flipper
|
|
|