summaryrefslogtreecommitdiffstats
path: root/.gitlab/ci/docker
diff options
context:
space:
mode:
authorKefu Chai <kefu.chai@scylladb.com>2023-02-15 04:52:09 (GMT)
committerBrad King <brad.king@kitware.com>2023-02-15 19:40:11 (GMT)
commit65ff605e44ef7e59a510de6c2d9b5e1615c8981f (patch)
tree67873987c409e85a27fc76d2aaa8119ff99043b8 /.gitlab/ci/docker
parent037975ef69a0e889f9c17e5e6e6fb87111dfd9df (diff)
downloadCMake-65ff605e44ef7e59a510de6c2d9b5e1615c8981f.zip
CMake-65ff605e44ef7e59a510de6c2d9b5e1615c8981f.tar.gz
CMake-65ff605e44ef7e59a510de6c2d9b5e1615c8981f.tar.bz2
ci: use the latest clang-scan-deps options
P1689 support has been merged in Clang trunk and Clang 16 branch, so we are now able to use the finalized clang-scan-deps command line options. See also llvm-project's clang/test/ClangScanDeps/P1689.cppm [1] for the samples of clang-scan-deps usages. [1] https://github.com/llvm/llvm-project/blob/6d859df46e/clang/test/ClangScanDeps/P1689.cppm Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
Diffstat (limited to '.gitlab/ci/docker')
-rwxr-xr-x.gitlab/ci/docker/clang_cxx_modules/install_llvm.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab/ci/docker/clang_cxx_modules/install_llvm.sh b/.gitlab/ci/docker/clang_cxx_modules/install_llvm.sh
index 025f8a2..35f925e 100755
--- a/.gitlab/ci/docker/clang_cxx_modules/install_llvm.sh
+++ b/.gitlab/ci/docker/clang_cxx_modules/install_llvm.sh
@@ -2,8 +2,8 @@
set -e
-readonly revision="p1689r5-cmake-ci-20221215" # a0acf2c9285e848b65ec7336e185888163949490
-readonly tarball="https://github.com/mathstuf/llvm-project/archive/$revision.tar.gz"
+readonly revision="6d859df46e93e04bd7a4f90d9a9056763998f638" # llvmorg-16.0.0-rc2-31-g6d859df46e93
+readonly tarball="https://github.com/llvm/llvm-project/archive/$revision.tar.gz"
readonly workdir="$HOME/llvm"
readonly srcdir="$workdir/llvm"