From 8af7ae867d8c2ef9bc31c66b67ac3197442f78ec Mon Sep 17 00:00:00 2001 From: hathach Date: Sat, 23 Jan 2021 14:34:06 +0700 Subject: [PATCH] action checkout submodule=true --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e5b8cd6ae..e0abe2e91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,14 +80,14 @@ jobs: uses: actions/checkout@v2 with: # Cannot do submodule checkout here since LWIP's git server cannot checkout unadventised commits (it must use tags) - submodules: 'false' + submodules: 'true' - - name: Checkout Submodules - run: | - git submodule sync --recursive +# - name: Checkout Submodules +# run: | +# git submodule sync --recursive # 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 +# git submodule update --init --recursive lib/lwip +# git submodule update --init --recursive --depth 1 - name: Build run: |