diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-09-22 17:00:42 +0200 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-09-22 17:00:42 +0200 |
| commit | 7eb0920c96fbcd2404a393342c3aa4ad497c1976 (patch) | |
| tree | a7a7c2ada1ea6d0ba3a144da8c6bd03b3575a768 /tests | |
| parent | 74bd1cc77022586de08e72b597dfccff4a6465f4 (diff) | |
ci: temorarily pin emsdk to 4.0.14 (reason: https://github.com/EsotericSoftware/spine-runtimes/issues/2934)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_common.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/test_common.sh b/tests/test_common.sh index 65b2bafd..def2579e 100644 --- a/tests/test_common.sh +++ b/tests/test_common.sh @@ -3,8 +3,11 @@ setup_emsdk() { mkdir -p build && cd build git clone https://github.com/emscripten-core/emsdk.git cd emsdk - ./emsdk install latest - ./emsdk activate latest + # FIXME: temporarily use emsdk 4.0.14 until spine is fixed + ./emsdk install 4.0.14 + ./emsdk activate 4.0.14 + # ./emsdk install latest + # ./emsdk activate latest cd ../.. fi source build/emsdk/emsdk_env.sh |