From 05b3ce5bd9903723382fd12d7d62ea268cdcdd1e Mon Sep 17 00:00:00 2001 From: Jeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com> Date: Sun, 18 Aug 2024 12:40:38 -0500 Subject: [PATCH] Try using clang 16 --- .github/workflows/test.yml | 2 +- ci/unittest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e9b5696..2487dae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -137,7 +137,7 @@ jobs: unittest-linux: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: dependencies diff --git a/ci/unittest.py b/ci/unittest.py index 5919198..86914e0 100644 --- a/ci/unittest.py +++ b/ci/unittest.py @@ -109,7 +109,7 @@ def build_and_test(runner: MatrixRunner): def run_linux_matrix(): MatrixRunner( matrix = { - "compiler": ["g++-10", "clang++-14"], + "compiler": ["g++-10", "clang++-16"], "stdlib": ["libstdc++", "libc++"], "sanitizers": ["OFF", "ON"], "build_type": ["Debug", "RelWithDebInfo"],