From 749d9537122106191766ead871186ba69861a43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Sat, 20 Feb 2021 21:20:19 +0100 Subject: [PATCH] Add Clang 10 + C++17 build to linux CI --- .github/workflows/linux-builds.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/linux-builds.yml b/.github/workflows/linux-builds.yml index caa6b3a1..3d2b41ef 100644 --- a/.github/workflows/linux-builds.yml +++ b/.github/workflows/linux-builds.yml @@ -38,6 +38,17 @@ jobs: std: 14 other_pkgs: clang-10 surrogates: ON + # Clang 10 + C++17 + - cxx: clang++-10 + build_type: Debug + std: 17 + other_pkgs: clang-10 + surrogates: OFF + - cxx: clang++-10 + build_type: Release + std: 17 + other_pkgs: clang-10 + surrogates: OFF steps: - uses: actions/checkout@v2