summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLuke Wilde <lukew@serenityos.org>2022-10-31 20:03:29 +0000
committerTim Flynn <trflynn89@pm.me>2022-10-31 16:14:41 -0400
commit5ebfa8d620c20e7ee3b89bfb08332030216ecda6 (patch)
treeb28371dacfe2afb66830db273b3f9bee3e675fc0 /.github
parent6382b174dccc769d1ac980c4574298cd39c3783e (diff)
downloadserenity-5ebfa8d620c20e7ee3b89bfb08332030216ecda6.zip
CI: Make the test262 worker use GCC 12
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/libjs-test262.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml
index 3be9dd8a29..9ce65983d5 100644
--- a/.github/workflows/libjs-test262.yml
+++ b/.github/workflows/libjs-test262.yml
@@ -48,7 +48,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get update
- sudo apt-get install -y ninja-build unzip gcc-11 g++-11 jq wget
+ sudo apt-get install -y ninja-build unzip gcc-12 g++-12 jq wget
test -e /opt/wabt-1.0.27 || (
cd /tmp
wget https://github.com/WebAssembly/wabt/releases/download/1.0.27/wabt-1.0.27-ubuntu.tar.gz
@@ -66,7 +66,7 @@ jobs:
pip install -r libjs-test262/requirements.txt
- name: Check versions
- run: set +e; g++ --version; g++-10 --version; python --version; python3 --version; ninja --version
+ run: set +e; g++ --version; g++-12 --version; python --version; python3 --version; ninja --version
- name: Create build directory
run: |
@@ -100,7 +100,7 @@ jobs:
run: |
cd Build
env PATH="/opt/wabt-1.0.27/bin:$PATH" \
- cmake -GNinja -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_CXX_COMPILER=g++-11 -DWASM_SPEC_TEST_SKIP_FORMATTING=ON -DINCLUDE_WASM_SPEC_TESTS=ON -DSERENITY_SOURCE_DIR=${{ env.SERENITY_SOURCE_DIR }} ..
+ cmake -GNinja -DCMAKE_C_COMPILER=gcc-12 -DCMAKE_CXX_COMPILER=g++-12 -DWASM_SPEC_TEST_SKIP_FORMATTING=ON -DINCLUDE_WASM_SPEC_TESTS=ON -DSERENITY_SOURCE_DIR=${{ env.SERENITY_SOURCE_DIR }} ..
ninja test262-runner test-js test-wasm
- name: Get previous results