We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f3212f commit 10d694dCopy full SHA for 10d694d
1 file changed
.github/workflows/cmake.yml
@@ -64,6 +64,19 @@ jobs:
64
with:
65
submodules: true
66
67
+ - name: Install Clang 18 (Linux)
68
+ if: matrix.os == 'ubuntu-22.04'
69
+ run: |
70
+ sudo apt update
71
+ sudo apt install -y wget lsb-release software-properties-common gnupg
72
+ wget https://apt.llvm.org/llvm.sh
73
+ chmod +x llvm.sh
74
+ sudo ./llvm.sh 18 all
75
+ sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-18 100
76
+ sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-18 100
77
+ clang-18 --version
78
+ clang++-18 --version
79
+
80
- name: Set reusable strings
81
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
82
id: strings
0 commit comments