From 03c5481dd43cee20d8511f0919ec6416f14a7d11 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Fri, 2 Jul 2021 11:52:44 +0300 Subject: [PATCH] Moved clang-8 to Bionic and gcc-10,11 to Focal. clang-8 jobs fail in C++20 mode since it doesn't support std::is_constant_evaluated, which is called from libstdc++-10 that is installed in Focal image. Moving it back to Bionic should work around the issue as it should use an older libstdc++ version. gcc-10 and 11 were moved to Focal just to make this configuration tested. Also, changed 2a to 20 for compilers that support this. --- .github/workflows/ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c1123e..d6898f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,11 +47,11 @@ jobs: cxxstd: "03,11,14,17,2a" os: ubuntu-18.04 - toolset: gcc-10 - cxxstd: "03,11,14,17,2a" - os: ubuntu-18.04 + cxxstd: "03,11,14,17,20" + os: ubuntu-20.04 - toolset: gcc-11 - cxxstd: "03,11,14,17,2a" - os: ubuntu-18.04 + cxxstd: "03,11,14,17,20" + os: ubuntu-20.04 install: g++-11 - toolset: clang compiler: clang++-3.5 @@ -101,7 +101,7 @@ jobs: - toolset: clang compiler: clang++-8 cxxstd: "03,11,14,17,2a" - os: ubuntu-20.04 + os: ubuntu-18.04 install: clang-8 - toolset: clang compiler: clang++-9 @@ -110,15 +110,15 @@ jobs: install: clang-9 - toolset: clang compiler: clang++-10 - cxxstd: "03,11,14,17,2a" + cxxstd: "03,11,14,17,20" os: ubuntu-20.04 - toolset: clang compiler: clang++-11 - cxxstd: "03,11,14,17,2a" + cxxstd: "03,11,14,17,20" os: ubuntu-20.04 - toolset: clang compiler: clang++-12 - cxxstd: "03,11,14,17,2a" + cxxstd: "03,11,14,17,20" os: ubuntu-20.04 - toolset: clang cxxstd: "03,11,14,17,2a"