1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:07:34 +00:00

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:
Timothy Flynn 2023-01-20 08:23:44 -05:00 committed by Tim Flynn
parent 93ca5d4772
commit e634778679

View file

@ -20,7 +20,11 @@ jobs:
- name: "Install Ubuntu dependencies" - name: "Install Ubuntu dependencies"
run: | run: |
sudo apt-get update 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" - name: "Check versions"
run: | run: |
set +e set +e