1
0
forked from boostorg/core

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.
This commit is contained in:
Andrey Semashev
2021-07-02 11:52:44 +03:00
parent 8e7ee90080
commit 03c5481dd4

View File

@ -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"