Unverified Commit ecfdc76c authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[ci] fix installation of clang-18 (fixes #6306) (#6307)

parent 7435cd8d
...@@ -27,6 +27,9 @@ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - ...@@ -27,6 +27,9 @@ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add -
# ref: https://apt.llvm.org/ # ref: https://apt.llvm.org/
add-apt-repository -y "deb http://apt.llvm.org/unstable/ llvm-toolchain main" add-apt-repository -y "deb http://apt.llvm.org/unstable/ llvm-toolchain main"
add-apt-repository -y "deb-src http://apt.llvm.org/unstable/ llvm-toolchain main" add-apt-repository -y "deb-src http://apt.llvm.org/unstable/ llvm-toolchain main"
add-apt-repository -y "deb http://apt.llvm.org/unstable/ llvm-toolchain-${CLANG_VERSION} main" || true
add-apt-repository -y "deb-src http://apt.llvm.org/unstable/ llvm-toolchain-${CLANG_VERSION} main" || true
apt-get update -y
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
clang-${CLANG_VERSION} \ clang-${CLANG_VERSION} \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment