about summary refs log tree commit diff
path: root/src/ci
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-06-09 13:54:20 +0200
committerJakub Beránek <berykubik@gmail.com>2025-06-09 13:54:20 +0200
commitee8853b21f31d2f274aa982a8ac037ed58f6a6ba (patch)
tree9c334d0528d2c2ea06ee57497ebe68decfc8faf4 /src/ci
parentb6685d748fe4668571c05ba338f61520db6dacc9 (diff)
downloadrust-ee8853b21f31d2f274aa982a8ac037ed58f6a6ba.tar.gz
rust-ee8853b21f31d2f274aa982a8ac037ed58f6a6ba.zip
Disable download-rustc on CI
Diffstat (limited to 'src/ci')
-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