diff options
| author | hathach <[email protected]> | 2021-03-01 20:25:55 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-03-01 20:25:55 +0700 |
| commit | c222f6f1119667f69da4d45df110da5b5cda5427 (patch) | |
| tree | 180dc21f0144ab14d547c5117472ccb073646816 /.github/workflows | |
| parent | 0374e085507cd23124d9cc6d5f2b10565717b72d (diff) | |
try to fetch needed mcu submodule while running make
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 77903d65e..635884674 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,13 +62,14 @@ jobs: - name: Checkout TinyUSB uses: actions/checkout@v2 with: - submodules: 'true' + submodules: 'false' - name: Checkout Sub-Submodules run: | + # Clone all submodules in lib + git submodule update --init --recursive lib # some submodule has it own submodules that need to be fetched as well - git submodule update --init --recursive hw/mcu/microchip - git submodule update --init --recursive lib/FreeRTOS + #git submodule update --init --recursive hw/mcu/microchip - name: Build run: python3 tools/build_family.py ${{ matrix.family }} |
