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.
This commit is contained in:
parent
93ca5d4772
commit
e634778679
Notes:
sideshowbarker
2024-07-17 06:33:00 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/e634778679 Pull-request: https://github.com/SerenityOS/serenity/pull/17102 Reviewed-by: https://github.com/alimpfard ✅ Reviewed-by: https://github.com/gmta ✅ Reviewed-by: https://github.com/linusg ✅
1 changed files with 5 additions and 1 deletions
6
.github/workflows/wasm.yml
vendored
6
.github/workflows/wasm.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue