From c98f965388ac9105969873bc1fc645b227fc1626 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Fri, 17 Nov 2023 11:06:21 +0300 Subject: [PATCH] Use gcc-11 libstdc++ for clang-12 through 15. --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 519df30..8af59ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -210,24 +210,32 @@ jobs: os: ubuntu-22.04 install: - clang-12 + - g++-11 + gcc_toolchain: 11 - toolset: clang compiler: clang++-13 cxxstd: "11,14,17,20,2b" os: ubuntu-22.04 install: - clang-13 + - g++-11 + gcc_toolchain: 11 - toolset: clang compiler: clang++-14 cxxstd: "11,14,17,20,2b" os: ubuntu-22.04 install: - clang-14 + - g++-11 + gcc_toolchain: 11 - toolset: clang compiler: clang++-15 cxxstd: "11,14,17,20,2b" os: ubuntu-22.04 install: - clang-15 + - g++-11 + gcc_toolchain: 11 - toolset: clang compiler: clang++-15 cxxstd: "11,14,17,20,2b"