We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3357ce2 commit 19afbf0Copy full SHA for 19afbf0
ci-build.sh
@@ -6,10 +6,11 @@ git submodule update --init lib/micropython-microbit-v2
6
(cd lib/micropython-microbit-v2 && git submodule update --init lib/micropython)
7
8
# Emscripten
9
+VERSION="3.1.25"
10
export PYTHON=python3.7 # Needed by Emscripten in Netlify's build image.
-git clone https://github.com/emscripten-core/emsdk.git ~/.emsdk
11
-~/.emsdk/emsdk install latest
12
-~/.emsdk/emsdk activate latest
+git clone https://github.com/emscripten-core/emsdk.git -b $VERSION ~/.emsdk
+~/.emsdk/emsdk install $VERSION
13
+~/.emsdk/emsdk activate $VERSION
14
source ~/.emsdk/emsdk_env.sh
15
16
npm run test && npm run build
0 commit comments