We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 346cf8d commit da36089Copy full SHA for da36089
1 file changed
.github/workflows/build.yml
@@ -35,7 +35,7 @@ jobs:
35
strategy:
36
matrix:
37
os: [ubuntu-latest]
38
- compiler: [g++, clang++]
+ compiler: [g++-14, clang++-19]
39
generator: [Ninja]
40
export_commands: [OFF]
41
build_type: [Debug, Release]
@@ -56,6 +56,10 @@ jobs:
56
if: ${{ matrix.generator == 'Ninja' }}
57
run: sudo apt install ninja-build
58
59
+ - name: Install Clang 19
60
+ if: ${{ matrix.generator == 'clang++-19' }}
61
+ run: sudo apt install clang-19
62
+
63
- name: Install clang-tidy
64
if: ${{ matrix.export_commands == 'ON' }}
65
run: sudo apt install clang-tidy
0 commit comments