Skip to content

Commit 0f47312

Browse files
committed
Fix Windows LLVM issue.
1 parent 1149193 commit 0f47312

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/ci/scripts/install-clang.sh

+6
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,9 @@ elif isWindows && [[ ${CUSTOM_MINGW-0} -ne 1 ]]; then
6161
ciCommandSetEnv RUST_CONFIGURE_ARGS \
6262
"${RUST_CONFIGURE_ARGS} --set llvm.clang-cl=$(pwd)/clang-rust/bin/clang-cl.exe"
6363
fi
64+
65+
if isWindows; then
66+
# GitHub image 20210928.2 added LLVM, but it is broken (and we don't want
67+
# to use it anyways).
68+
rm -rf /c/Program\ Files/LLVM
69+
fi

0 commit comments

Comments
 (0)