1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 03:20:00 +03:00

Adding recursive sub-modules checkout

This commit is contained in:
blckmn 2025-07-03 17:30:11 +10:00
parent 29550833e7
commit afccfef3c2

View file

@ -19,7 +19,10 @@ jobs:
outputs:
targets: ${{ steps.get-targets.outputs.targets }}
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Cache build toolchain
uses: actions/cache@v4
@ -32,10 +35,6 @@ jobs:
if: steps.cache-toolchain.outputs.cache-hit != 'true'
run: make arm_sdk_install
- name: Hydrate the PICO sdk
if: steps.cache-toolchain.outputs.cache-hit != 'true'
run: make pico_sdk
- name: Build pico tool and install
if: steps.cache-toolchain.outputs.cache-hit != 'true'
run: make picotool_install
@ -58,6 +57,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Fetch toolchain from cache
uses: actions/cache@v4