Use clang++-13 with C++23 on ubuntu-latest (#1930)

This commit is contained in:
Andreas Süßenbach 2024-07-23 14:46:51 +02:00 committed by GitHub
parent ae1eb5f449
commit 763e5bf88f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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