File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 lint :
11- runs-on : ubuntu-latest
11+ runs-on : deathstar
1212 steps :
1313 - uses : actions/checkout@v4
1414 - name : Lint
1515 run : |
1616 make fmt
1717 build :
18- runs-on : ubuntu-latest
18+ runs-on : deathstar
1919 steps :
2020 - name : Checkout repository
2121 uses : actions/checkout@v4
@@ -106,7 +106,7 @@ jobs:
106106 build-artifacts/zephyr/fprime-zephyr-deployment/dict/ReferenceDeploymentTopologyDictionary.json
107107 retention-days : 30
108108 integration :
109- runs-on : [self-hosted, integration]
109+ runs-on : [integration]
110110 needs : build
111111 steps :
112112 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -70,7 +70,12 @@ test-integration: uv
7070
7171.PHONY : bootloader
7272bootloader : uv
73- @$(UV ) run pytest FprimeZephyrReference/test/bootloader_trigger.py --deployment build-artifacts/zephyr/fprime-zephyr-deployment
73+ @if [ -d " /Volumes/RP2350" ] || [ -d " /Volumes/RPI-RP2" ] || ls /media/* /RP2350 2> /dev/null || ls /media/* /RPI-RP2 2> /dev/null; then \
74+ echo " RP2350 already in bootloader mode - skipping trigger" ; \
75+ else \
76+ echo " RP2350 not in bootloader mode - triggering bootloader" ; \
77+ $(UV ) run pytest FprimeZephyrReference/test/bootloader_trigger.py --deployment build-artifacts/zephyr/fprime-zephyr-deployment; \
78+ fi
7479
7580.PHONY : clean
7681clean : # # Remove all gitignored files
You can’t perform that action at this time.
0 commit comments