Skip to content

Commit 787df96

Browse files
committed
pin emscripten on ci
this might call for another composite... second attempt at pinning emscripten
1 parent 3cdcf7c commit 787df96

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/minimal-ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,14 @@ jobs:
143143
rust: nightly
144144

145145
- name: "Install emscripten"
146+
env:
147+
EMSCRIPTEN_SRC_REF: 4.0.13
148+
EMSCRIPTEN_VERSION: 3.1.74
146149
run: |
147-
git clone https://github.com/emscripten-core/emsdk.git
150+
git clone https://github.com/emscripten-core/emsdk.git --depth 1 --branch $EMSCRIPTEN_SRC_REF --single-branch
148151
pushd emsdk
149-
./emsdk install 3.1.74
150-
./emsdk activate 3.1.74
152+
./emsdk install $EMSCRIPTEN_VERSION
153+
./emsdk activate $EMSCRIPTEN_VERSION
151154
source ./emsdk_env.sh
152155
popd
153156

0 commit comments

Comments
 (0)