Use clang++-15 with Cpp-23 on ubuntu-latest (#1920)

This commit is contained in:
Andreas Süßenbach 2024-07-16 14:43:05 +02:00 committed by GitHub
parent e3b0737d57
commit a4cbf9c027
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,7 +53,8 @@ jobs:
- name: Loop over build_types (Debug, Release) with cpp_standard 23 for g++-11 and above only
run: |
if [ ${{matrix.compiler}} == g++-11 ] || [ ${{matrix.compiler}} == g++-12 ] || [ ${{matrix.compiler}} == g++-13 ]
# g++-10 does not support Cpp-23
if [ ${{matrix.compiler}} == clang++-15 ] || [ ${{matrix.compiler}} == g++-11 ] || [ ${{matrix.compiler}} == g++-12 ]
then
cpp_standard=23
for build_type in Debug Release