Skip to content

Commit 499c22a

Browse files
committed
Fix workflows for new mbedtls
Anything that builds picotool now has to pass "recursive" flag to the "git submodule init" command
1 parent 2d44306 commit 499c22a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Checkout pico-sdk submodules
3333
working-directory: ${{github.workspace}}/pico-sdk
34-
run: git submodule update --init
34+
run: git submodule update --init --recursive
3535

3636
- name: Create Build Environment
3737
# Some projects don't allow in-source building, so create a separate build directory

.github/workflows/macOS.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Checkout pico-sdk submodules
3333
working-directory: ${{github.workspace}}/pico-sdk
34-
run: git submodule update --init
34+
run: git submodule update --init --recursive
3535
- name: Install dependencies
3636
run: |
3737
brew install cmake
@@ -55,4 +55,4 @@ jobs:
5555
mkdir build_native
5656
cd build_native
5757
cmake .. -G "Unix Makefiles" -DPICO_SDK_PATH=../../pico-sdk -DCMAKE_BUILD_TYPE=Debug -DPICO_PLATFORM=host
58-
cmake --build .
58+
cmake --build .

.github/workflows/multi-gcc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Checkout pico-sdk submodules
3434
working-directory: ${{github.workspace}}/pico-sdk
35-
run: git submodule update --init
35+
run: git submodule update --init --recursive
3636

3737
- name: Create Build Environment
3838
# Some projects don't allow in-source building, so create a separate build directory

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Checkout pico-sdk submodules
3333
working-directory: ${{github.workspace}}/pico-sdk
34-
run: git submodule update --init
34+
run: git submodule update --init --recursive
3535

3636
- name: Install dependencies
3737
working-directory: ${{github.workspace}}/pico-examples

0 commit comments

Comments
 (0)