Skip to content

Commit ee8853b

Browse files
committed
Disable download-rustc on CI
1 parent b6685d7 commit ee8853b

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/ci/run.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,11 @@ else
186186
# Download GCC from CI on test builders
187187
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set gcc.download-ci-gcc=true"
188188

189-
if [ "$NO_DOWNLOAD_CI_RUSTC" = "" ]; then
190-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.download-rustc=if-unchanged"
191-
fi
189+
# download-rustc seems to be broken on CI after the stage0 redesign
190+
# Disable it until these issues are debugged and resolved
191+
# if [ "$NO_DOWNLOAD_CI_RUSTC" = "" ]; then
192+
# RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.download-rustc=if-unchanged"
193+
# fi
192194
fi
193195

194196
if [ "$ENABLE_GCC_CODEGEN" = "1" ]; then

0 commit comments

Comments
 (0)