From 472b0fe2ce67333f576fa3823ba036f5e4a81fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 1 Jul 2026 10:25:57 +0200 Subject: [PATCH] Fix unsupported std values and ARM clang runner --- .github/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea4003b..9b8b1b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -310,7 +310,7 @@ jobs: # Linux, clang-15 - toolset: clang compiler: clang++-15 - cxxstd: "03,11,14,17,20,23" + cxxstd: "03,11,14,17,20,2b" cxxflags: -pipe container: ubuntu:22.04 os: ubuntu-latest @@ -319,7 +319,7 @@ jobs: - toolset: clang compiler: clang++-16 cxxflags: -pipe - cxxstd: "03,11,14,17,20,23" + cxxstd: "03,11,14,17,20,2b" container: ubuntu:24.04 os: ubuntu-latest install: clang-16 @@ -374,7 +374,7 @@ jobs: # Linux, clang-15 libc++ - toolset: clang compiler: clang++-15 - cxxstd: "11,14,17,20,23" + cxxstd: "11,14,17,20,2b" os: ubuntu-latest container: ubuntu:22.04 install: @@ -446,7 +446,9 @@ jobs: cxxstd: "03,11,14,17,20,23,26" cxxflags: -pipe os: ubuntu-26.04-arm - install: clang + install: + - clang + - g++ #------------------ # MacOS, clang #------------------