about summary refs log tree commit diff
path: root/src/ci
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2021-09-29 15:27:44 -0700
committerEric Huss <eric@huss.org>2021-09-29 15:27:44 -0700
commit0f4731273a2451668c0dad15604f975db73848f3 (patch)
tree0e963368a160774f7aca00a48b910ca7b5b6422a /src/ci
parent11491938f80988c7261a1179cf71a25c379c8783 (diff)
Fix Windows LLVM issue.
Diffstat (limited to 'src/ci')
-rwxr-xr-xsrc/ci/scripts/install-clang.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ci/scripts/install-clang.sh b/src/ci/scripts/install-clang.sh
index fd29d3a022a..b17398bb6b4 100755
--- a/src/ci/scripts/install-clang.sh
+++ b/src/ci/scripts/install-clang.sh
@@ -61,3 +61,9 @@ elif isWindows && [[ ${CUSTOM_MINGW-0} -ne 1 ]]; then
     ciCommandSetEnv RUST_CONFIGURE_ARGS \
         "${RUST_CONFIGURE_ARGS} --set llvm.clang-cl=$(pwd)/clang-rust/bin/clang-cl.exe"
 fi
+
+if isWindows; then
+    # GitHub image 20210928.2 added LLVM, but it is broken (and we don't want
+    # to use it anyways).
+    rm -rf /c/Program\ Files/LLVM
+fi