Skip to content

Commit 00b5262

Browse files
committed
Auto merge of #142241 - Kobzol:disable-ci-rustc-on-ci, r=jieyouxu
Disable download-rustc on CI Should resolve https://rust-lang.zulipchat.com/#narrow/channel/326414-t-infra.2Fbootstrap/topic/aarch64-apple.20try.20job.20doesn.27t.20work/with/522659759. r? `@jieyouxu`
2 parents 14863ea + ee8853b commit 00b5262

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)