From 0be48561445db619b7994b6c413d4fc9eec0fb6b Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Fri, 3 Jun 2022 05:41:53 +0300 Subject: [PATCH] Add GCC 12, Clang 13, 14 to ci.yml --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fef57c4..2b819fdf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,6 +49,10 @@ jobs: cxxstd: "03,11,14,17,2a" os: ubuntu-20.04 install: g++-11 + - toolset: gcc-12 + cxxstd: "03,11,14,17,2a" + os: ubuntu-22.04 + install: g++-12 sanitizers: true - toolset: clang compiler: clang++-3.9 @@ -97,6 +101,16 @@ jobs: compiler: clang++-12 cxxstd: "03,11,14,17,2a" os: ubuntu-20.04 + - toolset: clang + compiler: clang++-13 + cxxstd: "03,11,14,17,2a" + os: ubuntu-22.04 + install: clang-13 + - toolset: clang + compiler: clang++-14 + cxxstd: "03,11,14,17,2a" + os: ubuntu-22.04 + install: clang-14 sanitizers: true - toolset: clang cxxstd: "03,11,14,17"