diff options
| author | hathach <[email protected]> | 2021-01-23 01:15:20 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-01-23 01:15:20 +0700 |
| commit | b0b78c0efbd96d0f16478d43eb0271f1df7bb851 (patch) | |
| tree | b6f6490b99ef7d25306fc75c4f9bd11bde72396a | |
| parent | fd56ae777e91a6a224bcaadae7b4594825b3f513 (diff) | |
try to fix cross included submodules with pico-sdk
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5b8cd6ae..f284e440e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,6 +85,8 @@ jobs: - name: Checkout Submodules run: | git submodule sync --recursive + # pico-sdk also include tinyusb, therefore we cannot recursive include it + git submodule update --init hw/mcu/raspberrypi/pico-sdk # Special case LWIP since GNU's Savannah can't do shallow checkout of non-tagged commits git submodule update --init --recursive lib/lwip git submodule update --init --recursive --depth 1 |
