From 7f3d0cecb2a5f321d109114a6b5c5b512690a8f2 Mon Sep 17 00:00:00 2001 From: Sebastian Miasojed Date: Fri, 8 Nov 2024 15:00:14 +0100 Subject: [PATCH] Update cmake versions in GHA --- .github/workflows/build-revive-wasm.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-revive-wasm.yml b/.github/workflows/build-revive-wasm.yml index e47adba..94bc25a 100644 --- a/.github/workflows/build-revive-wasm.yml +++ b/.github/workflows/build-revive-wasm.yml @@ -34,7 +34,9 @@ jobs: - name: Install Dependencies if: steps.cache-llvm.outputs.cache-hit != 'true' run: | - apt-get update && apt-get install -y cmake ninja-build + wget https://cmake.org/files/v3.20/cmake-3.20.0-linux-x86_64.sh && chmod +x cmake-3.20.0-linux-x86_64.sh && ./cmake-3.20.0-linux-x86_64.sh --prefix=/usr/local --skip-license + alias cmake='/usr/local/bin/cmake' + apt-get update && apt-get install -y ninja-build rustup target add wasm32-unknown-emscripten # Install Emscripten git clone https://github.com/emscripten-core/emsdk.git