mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 20:49:49 +04:00
rm unused file
This commit is contained in:
52
.github/workflows/unit_tests.yml
vendored
52
.github/workflows/unit_tests.yml
vendored
@@ -1,52 +0,0 @@
|
|||||||
name: 'Unit tests'
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
|
|
||||||
env:
|
|
||||||
TARGETS: f7
|
|
||||||
DEFAULT_TARGET: f7
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
main:
|
|
||||||
runs-on: [self-hosted, FlipperZeroTest]
|
|
||||||
steps:
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
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: 'Compile unit tests firmware'
|
|
||||||
id: compile
|
|
||||||
run: |
|
|
||||||
FBT_TOOLCHAIN_PATH=/opt ./fbt flash OPENOCD_ADAPTER_SERIAL=2A0906016415303030303032 FIRMWARE_APP_SET=unit_tests FORCE=1
|
|
||||||
|
|
||||||
- name: 'Wait for flipper to finish updating'
|
|
||||||
id: connect
|
|
||||||
if: steps.compile.outcome == 'success'
|
|
||||||
run: |
|
|
||||||
python3 ./scripts/testing/await_flipper.py ${{steps.device.outputs.flipper}}
|
|
||||||
|
|
||||||
- name: 'Format flipper SD card'
|
|
||||||
id: format
|
|
||||||
if: steps.connect.outcome == 'success'
|
|
||||||
run: |
|
|
||||||
./scripts/storage.py -p ${{steps.device.outputs.flipper}} format_ext
|
|
||||||
|
|
||||||
- name: 'Copy assets and unit tests data to flipper'
|
|
||||||
id: copy
|
|
||||||
if: steps.format.outcome == 'success'
|
|
||||||
run: |
|
|
||||||
./scripts/storage.py -p ${{steps.device.outputs.flipper}} send assets/resources /ext
|
|
||||||
./scripts/storage.py -p ${{steps.device.outputs.flipper}} send assets/unit_tests /ext/unit_tests
|
|
||||||
|
|
||||||
- name: 'Run units and validate results'
|
|
||||||
if: steps.copy.outcome == 'success'
|
|
||||||
run: |
|
|
||||||
python3 ./scripts/testing/units.py ${{steps.device.outputs.flipper}}
|
|
||||||
Reference in New Issue
Block a user