From 7e7436b20c9c7cd002f632a83bd00249348e0079 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Mon, 12 Feb 2024 10:51:27 -0800 Subject: [PATCH] Switch to clang-15 on Ubuntu 22.04 runner to fix incompatibility with libstdc++ 13 --- .github/workflows/ci-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index be50fe5..ed0a81c 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -14,7 +14,7 @@ jobs: - { os: ubuntu-20.04, compiler: gcc } # GCC 9 - { os: ubuntu-20.04, compiler: clang } # Clang 10 - { os: ubuntu-22.04, compiler: gcc } # GCC 11 - - { os: ubuntu-22.04, compiler: clang } # Clang 14 + - { os: ubuntu-22.04, compiler: clang-15 } steps: - uses: actions/checkout@v3 with: