diff options
| author | Eric Huss <eric@huss.org> | 2021-09-29 15:27:44 -0700 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2021-09-29 15:27:44 -0700 |
| commit | 0f4731273a2451668c0dad15604f975db73848f3 (patch) | |
| tree | 0e963368a160774f7aca00a48b910ca7b5b6422a /src/ci | |
| parent | 11491938f80988c7261a1179cf71a25c379c8783 (diff) | |
Fix Windows LLVM issue.
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/scripts/install-clang.sh | 6 |
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 |
