diff options
author | Ayke van Laethem <[email protected]> | 2024-02-26 14:44:52 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-03-24 13:04:47 +0100 |
commit | d628e3e2cb6f767dc5367bc43fb14751a509404a (patch) | |
tree | 29ad39275551411968b0a87032ddb386367a386f /.github | |
parent | d97e4dbccf73b42819b1b0c0692490170e753212 (diff) | |
download | tinygo-d628e3e2cb6f767dc5367bc43fb14751a509404a.tar.gz tinygo-d628e3e2cb6f767dc5367bc43fb14751a509404a.zip |
ci: don't add --recursive when updating submodules
It's not generally needed. It was added in
https://github.com/tinygo-org/tinygo/pull/3958 to fix an issue with
binaryen that has since been fixed in a different way, so we don't need
the googletest dependency anymore.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9b6c8d895..978e5a123 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -356,13 +356,13 @@ jobs: uses: actions/cache@v4 id: cache-binaryen with: - key: binaryen-linux-${{ matrix.goarch }}-v3 + key: binaryen-linux-${{ matrix.goarch }}-v4 path: build/wasm-opt - name: Build Binaryen if: steps.cache-binaryen.outputs.cache-hit != 'true' run: | sudo apt-get install --no-install-recommends ninja-build - git submodule update --init --recursive lib/binaryen + git submodule update --init lib/binaryen make CROSS=${{ matrix.toolchain }} binaryen - name: Install fpm run: | |