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 034b6db commit c24dfbdCopy full SHA for c24dfbd
.github/workflows/cmake.yml
@@ -71,8 +71,13 @@ jobs:
71
run: |
72
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
73
74
+ - name: Install LLVM and Clang
75
+ uses: KyleMayes/install-llvm-action@v2
76
+ with:
77
+ version: "16.0.6"
78
+
79
- name: Set Clang 16 as Default
- if: matrix.os == 'ubuntu-24.04' && matrix.c_compiler == 'clang'
80
+ if: matrix.os == 'ubuntu-22.04' && matrix.c_compiler == 'clang'
81
82
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 100
83
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-16 100
0 commit comments