mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 15:00:46 +00:00
917410a0a8
* fbt: reworking targets & assets handling WIP * fbt: dist fixes * fbt: moved SD card resources to owning apps * unit_tests: moved resources to app folder * github: updated unit_tests paths * github: packaging fixes * unit_tests: fixes * fbt: assets: internal cleanup * fbt: reworked assets handling * github: unit_tests: reintroducing fixes * minor cleanup * fbt: naming changes to reflect private nature of scons tools * fbt: resources: fixed dist archive paths * docs: updated paths * docs: updated more paths * docs: included "resources" parameter in app manifest docs; updated assets readme * updated gitignore for assets * github: updated action versions * unit_tests: restored timeout; scripts: assets: logging changes * gh: don't upload desktop animations for unit test run Co-authored-by: あく <alleteam@gmail.com>
69 lines
2.3 KiB
YAML
69 lines
2.3 KiB
YAML
name: 'Unit tests'
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
env:
|
|
TARGETS: f7
|
|
DEFAULT_TARGET: f7
|
|
FBT_TOOLCHAIN_PATH: /opt
|
|
FBT_GIT_SUBMODULE_SHALLOW: 1
|
|
|
|
jobs:
|
|
run_units_on_bench:
|
|
runs-on: [self-hosted, FlipperZeroUnitTest]
|
|
steps:
|
|
- name: 'Wipe workspace'
|
|
run: find ./ -mount -maxdepth 1 -exec rm -rf {} \;
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: 'Get flipper from device manager (mock)'
|
|
id: device
|
|
run: |
|
|
echo "flipper=/dev/ttyACM0" >> $GITHUB_OUTPUT
|
|
|
|
- name: 'Flash unit tests firmware'
|
|
id: flashing
|
|
if: success()
|
|
timeout-minutes: 10
|
|
run: |
|
|
./fbt resources firmware_latest flash SWD_TRANSPORT_SERIAL=2A0906016415303030303032 LIB_DEBUG=1 FIRMWARE_APP_SET=unit_tests FORCE=1
|
|
|
|
- name: 'Wait for flipper and format ext'
|
|
id: format_ext
|
|
if: steps.flashing.outcome == 'success'
|
|
timeout-minutes: 5
|
|
run: |
|
|
source scripts/toolchain/fbtenv.sh
|
|
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
|
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} format_ext
|
|
|
|
- name: 'Copy assets and unit data, reboot and wait for flipper'
|
|
id: copy
|
|
if: steps.format_ext.outcome == 'success'
|
|
timeout-minutes: 7
|
|
run: |
|
|
source scripts/toolchain/fbtenv.sh
|
|
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
|
rm -rf build/latest/resources/dolphin
|
|
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} -f send build/latest/resources /ext
|
|
python3 scripts/power.py -p ${{steps.device.outputs.flipper}} reboot
|
|
python3 scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
|
|
|
- name: 'Run units and validate results'
|
|
id: run_units
|
|
if: steps.copy.outcome == 'success'
|
|
timeout-minutes: 7
|
|
run: |
|
|
source scripts/toolchain/fbtenv.sh
|
|
python3 scripts/testing/units.py ${{steps.device.outputs.flipper}}
|
|
|
|
- name: 'Check GDB output'
|
|
if: failure()
|
|
run: |
|
|
./fbt gdb_trace_all SWD_TRANSPORT_SERIAL=2A0906016415303030303032 LIB_DEBUG=1 FIRMWARE_APP_SET=unit_tests FORCE=1
|