We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c52be1 commit 7ed2b70Copy full SHA for 7ed2b70
.github/workflows/cpp-linter.yml
@@ -20,10 +20,13 @@ jobs:
20
pip install meson --break-system-packages
21
22
- name: Setup Clang
23
- uses: egor-tensin/setup-clang@v1
24
- with:
25
- version: 19
26
- platform: x64
+ run: |
+ wget https://apt.llvm.org/llvm.sh
+ chmod +x llvm.sh
+ sudo ./llvm.sh 19
27
+ echo "CC=clang-19" >> "$GITHUB_ENV"
28
+ echo "CXX=clang++-19" >> "$GITHUB_ENV"
29
+ echo "OBJC=clang-19" >> "$GITHUB_ENV"
30
31
- name: Prepare compile_commands.json
32
run: |
0 commit comments