diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-31 14:15:06 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-07-31 14:19:40 +0200 |
commit | bfd5226a8d9341eddb6950a56efb66c1f5a96480 (patch) | |
tree | 545d99c741ff0d45493866c0e8a2c948d1a00f75 | |
parent | b1efa0f07f9056737bee39ddd607a00be5f0a2ec (diff) |
CI: Pin Emscripten version for reproducible builds
Emscripten is a fast-moving target which gets tons of improvements all the time,
but it's not rare that some regressions affect us and make our CI builds fail.
(See e.g. #33728, #35237, #39168, #40563, and #40914.)
Let's pin to a stable version to avoid having external factors impact our CI,
and update this version manually regularly in a PR to ensure that the new
version works well for us.
-rw-r--r-- | .github/workflows/javascript_builds.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/javascript_builds.yml b/.github/workflows/javascript_builds.yml index 8167a48eae..421906c77f 100644 --- a/.github/workflows/javascript_builds.yml +++ b/.github/workflows/javascript_builds.yml @@ -5,7 +5,7 @@ on: [push, pull_request] env: GODOT_BASE_BRANCH: master SCONS_CACHE_LIMIT: 4096 - EM_VERSION: latest + EM_VERSION: 1.39.20 EM_CACHE_FOLDER: 'emsdk-cache' jobs: |