diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-01-20 08:23:44 -0500 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-01-20 14:24:12 -0500 |
commit | e63477867988d2488d7493f7e716d587fde488d0 (patch) | |
tree | f67ab5c71966abb3cc93d521df9638d36a305d82 | |
parent | 93ca5d47726c42418509b2374fb9af56b40a2e3a (diff) | |
download | serenity-e63477867988d2488d7493f7e716d587fde488d0.zip |
CI: Install a more up-to-date version of emscripten
This is to allow using more recent C++20 features in upcoming commits.
Version 3.1.6 is what is installed on Ubuntu 22.10 and works with the
C++20 features we want.
-rw-r--r-- | .github/workflows/wasm.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index ff7dff7ee5..2723a0bf0f 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -20,7 +20,11 @@ jobs: - name: "Install Ubuntu dependencies" run: | sudo apt-get update - sudo apt-get install -y ninja-build emscripten gcc-12 g++-12 libstdc++-12-dev + sudo apt-get install -y ninja-build gcc-12 g++-12 libstdc++-12-dev + - name: "Install emscripten" + uses: mymindstorm/setup-emsdk@v12 + with: + version: 3.1.6 - name: "Check versions" run: | set +e |