about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-06-09 15:21:07 +0000
committerbors <bors@rust-lang.org>2025-06-09 15:21:07 +0000
commit00b526212bbdd68872d6f964fcc9a14a66c36fd8 (patch)
tree91c9662bae9b27226b526593164ff74c4fe408c6
parent14863ea0777c68348b3e6e7a8472423d273a52af (diff)
parentee8853b21f31d2f274aa982a8ac037ed58f6a6ba (diff)
downloadrust-00b526212bbdd68872d6f964fcc9a14a66c36fd8.tar.gz
rust-00b526212bbdd68872d6f964fcc9a14a66c36fd8.zip
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`
-rwxr-xr-xsrc/ci/run.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh
index b6143af632d..e0c00dc1925 100755
--- a/src/ci/run.sh
+++ b/src/ci/run.sh
@@ -186,9 +186,11 @@ else
   # Download GCC from CI on test builders
   RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set gcc.download-ci-gcc=true"
 
-  if [ "$NO_DOWNLOAD_CI_RUSTC" = "" ]; then
-    RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.download-rustc=if-unchanged"
-  fi
+  # download-rustc seems to be broken on CI after the stage0 redesign
+  # Disable it until these issues are debugged and resolved
+#  if [ "$NO_DOWNLOAD_CI_RUSTC" = "" ]; then
+#    RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.download-rustc=if-unchanged"
+#  fi
 fi
 
 if [ "$ENABLE_GCC_CODEGEN" = "1" ]; then