From f1678399af9aa75aee8ae5ec022a759dd18b75b2 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 28 Aug 2021 17:00:31 +0300 Subject: [PATCH] Remove cxxstd=2a from clang-9, 10 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e72c7d4d..16b45702 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -81,12 +81,12 @@ jobs: install: clang-8 - toolset: clang compiler: clang++-9 - cxxstd: "03,11,14,17,2a" + cxxstd: "03,11,14,17" os: ubuntu-20.04 install: clang-9 - toolset: clang compiler: clang++-10 - cxxstd: "03,11,14,17,2a" + cxxstd: "03,11,14,17" os: ubuntu-20.04 - toolset: clang compiler: clang++-11 @@ -97,7 +97,7 @@ jobs: cxxstd: "03,11,14,17,2a" os: ubuntu-20.04 - toolset: clang - cxxstd: "03,11,14,17,2a" + cxxstd: "03,11,14,17" os: macos-10.15 runs-on: ${{matrix.os}}