aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/base-images
diff options
context:
space:
mode:
authorGravatar DavidKorczynski <david@adalogics.com>2022-04-25 09:29:35 +0100
committerGravatar GitHub <noreply@github.com>2022-04-25 09:29:35 +0100
commit15cd77a60ed1f3fd4d180725d75b865351eb878b (patch)
tree8c54053cb80a6e8a58fdd231425a43b389e2398a /infra/base-images
parentf24b166ca27857a96122c70af20da8aed0a31e91 (diff)
infra: fix base-clang temporarily (#7618)
Diffstat (limited to 'infra/base-images')
-rwxr-xr-xinfra/base-images/base-clang/checkout_build_install_llvm.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/infra/base-images/base-clang/checkout_build_install_llvm.sh b/infra/base-images/base-clang/checkout_build_install_llvm.sh
index ae0550f9..75c85121 100755
--- a/infra/base-images/base-clang/checkout_build_install_llvm.sh
+++ b/infra/base-images/base-clang/checkout_build_install_llvm.sh
@@ -69,8 +69,10 @@ function cmake_llvm {
# Use chromium's clang revision
mkdir $SRC/chromium_tools
cd $SRC/chromium_tools
-git clone https://chromium.googlesource.com/chromium/src/tools/clang --depth 1
+git clone https://chromium.googlesource.com/chromium/src/tools/clang
cd clang
+# Pin clang due to https://github.com/google/oss-fuzz/issues/7617
+git checkout 946a41a51f44207941b3729a0733dfc1e236644e
LLVM_SRC=$SRC/llvm-project