From 763e5bf88feebcaffce0bdf76a700b95e3a7ed92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20S=C3=BC=C3=9Fenbach?= Date: Tue, 23 Jul 2024 14:46:51 +0200 Subject: [PATCH] Use clang++-13 with C++23 on ubuntu-latest (#1930) --- .github/workflows/ci-ubuntu.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-ubuntu.yml b/.github/workflows/ci-ubuntu.yml index f044383..f212fd0 100644 --- a/.github/workflows/ci-ubuntu.yml +++ b/.github/workflows/ci-ubuntu.yml @@ -53,8 +53,8 @@ jobs: - name: Loop over build_types (Debug, Release) with cpp_standard 23 for compilers supporting that run: | - # g++-10 does not support Cpp-23 - if [ ${{matrix.compiler}} != clang++-13 ] && [ ${{matrix.compiler}} != g++-10 ] + # g++-10 does not support C++23 + if [ ${{matrix.compiler}} != g++-10 ] then cpp_standard=23 for build_type in Debug Release