We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f3e3ce commit 03ffdd2Copy full SHA for 03ffdd2
1 file changed
.github/workflows/test.yml
@@ -26,6 +26,11 @@ jobs:
26
preset: dev-gcc
27
28
# ── Linux / Clang 22 ──
29
+ - os: ubuntu-24.04
30
+ compiler: clang-22
31
+ preset: dev-clang
32
+
33
+ # ── Linux / Clang 22 + libc++ ──
34
- os: ubuntu-24.04
35
compiler: clang-22+libc++
36
preset: dev-clang-libcxx
@@ -66,7 +71,7 @@ jobs:
66
71
--slave /usr/bin/g++ g++ /usr/bin/g++-16
67
72
68
73
- name: Install Clang 22 + libc++
69
- if: matrix.compiler == 'clang-22+libc++'
74
+ if: startsWith(matrix.compiler, 'clang-22')
70
75
run: |
76
wget -q https://apt.llvm.org/llvm.sh
77
sudo bash llvm.sh 22 all
0 commit comments