Skip to content

Commit

Permalink
WASM: set default emsdk version to 3.1.72
Browse files Browse the repository at this point in the history
  • Loading branch information
bblanchon committed Nov 25, 2024
1 parent aaf99b2 commit b1ba400
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-one.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ on:
description: Emscripten SDK
type: string
required: false
default: 3.1.34
default: 3.1.72
is_debug:
description: Is debug
type: boolean
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ on:
description: Emscripten SDK
type: string
required: false
default: 3.1.34
default: 3.1.72
outputs:
artifact:
description: "The name of the artifact"
Expand Down
4 changes: 2 additions & 2 deletions steps/01-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ case "$TARGET_OS" in
git clone https://github.com/emscripten-core/emsdk.git
fi
pushd emsdk
./emsdk install ${EMSDK_VERSION:-3.1.34}
./emsdk activate ${EMSDK_VERSION:-3.1.34}
./emsdk install ${EMSDK_VERSION:-3.1.72}
./emsdk activate ${EMSDK_VERSION:-3.1.72}
echo "$PWD/upstream/emscripten" >> "$PATH_FILE"
echo "$PWD/upstream/bin" >> "$PATH_FILE"
popd
Expand Down

0 comments on commit b1ba400

Please sign in to comment.