We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cdcf7c commit 787df96Copy full SHA for 787df96
.github/workflows/minimal-ci.yml
@@ -143,11 +143,14 @@ jobs:
143
rust: nightly
144
145
- name: "Install emscripten"
146
+ env:
147
+ EMSCRIPTEN_SRC_REF: 4.0.13
148
+ EMSCRIPTEN_VERSION: 3.1.74
149
run: |
- 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
151
pushd emsdk
- ./emsdk install 3.1.74
- ./emsdk activate 3.1.74
152
+ ./emsdk install $EMSCRIPTEN_VERSION
153
+ ./emsdk activate $EMSCRIPTEN_VERSION
154
source ./emsdk_env.sh
155
popd
156
0 commit comments