From 32b1d5a528e100a914f91693994135e6c67f1e7f Mon Sep 17 00:00:00 2001 From: mcbarton Date: Sat, 22 Feb 2025 20:20:15 +0000 Subject: [PATCH] Update submodules indepently ci --- .github/actions/checkout/action.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/actions/checkout/action.yml b/.github/actions/checkout/action.yml index aca1b72..4bc964b 100644 --- a/.github/actions/checkout/action.yml +++ b/.github/actions/checkout/action.yml @@ -7,10 +7,14 @@ runs: - run: git fetch --tags --force name: Force-fetch tags to work around actions/checkout#290 shell: bash - # We can't use `--depth 1` here sadly because the GNU config - # submodule is not pinned to a particular tag/branch. Please + # We can't use `--depth 1` for the GNU config submodule + # here sadly because is not pinned to a particular tag/branch. Please # bump depth (or even better, the submodule), in case of "error: # Server does not allow request for unadvertised object" in the # future. - - run: git submodule update --init --depth 64 --jobs 3 + - run: | + git submodule update --init --depth 64 src/config + git submodule update --init --depth 1 src/llvm-project + git submodule update --init --depth 1 src/wasi-libc + shell: bash