7f3ebcd110
* changed bench target, stlink serial and added error for testing the run * changed flipper name for macos and changed serial aquisition for device manager * tested broken pipeline, reverting test data * added timeout-minutes, testing if its int or float Co-authored-by: Konstantin Volkov <k.volkov@flipperdevices.com> Co-authored-by: あく <alleteam@gmail.com>
68 lines
2.3 KiB
YAML
68 lines
2.3 KiB
YAML
name: 'Unit tests'
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
env:
|
|
TARGETS: f7
|
|
DEFAULT_TARGET: f7
|
|
FBT_TOOLCHAIN_PATH: /opt
|
|
|
|
jobs:
|
|
run_units_on_bench:
|
|
runs-on: [self-hosted, FlipperZeroTest]
|
|
steps:
|
|
- name: 'Decontaminate previous build leftovers'
|
|
run: |
|
|
if [ -d .git ]; then
|
|
git submodule status || git checkout "$(git rev-list --max-parents=0 HEAD | tail -n 1)"
|
|
fi
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
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()
|
|
run: |
|
|
./fbt flash OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1
|
|
|
|
- name: 'Wait for flipper and format ext'
|
|
id: format_ext
|
|
if: steps.flashing.outcome == 'success'
|
|
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'
|
|
run: |
|
|
source scripts/toolchain/fbtenv.sh
|
|
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} -f send assets/resources /ext
|
|
python3 scripts/storage.py -p ${{steps.device.outputs.flipper}} -f send assets/unit_tests /ext/unit_tests
|
|
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: 2.5
|
|
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 OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1
|