We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6685d7 commit ee8853bCopy full SHA for ee8853b
src/ci/run.sh
@@ -186,9 +186,11 @@ else
186
# Download GCC from CI on test builders
187
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set gcc.download-ci-gcc=true"
188
189
- if [ "$NO_DOWNLOAD_CI_RUSTC" = "" ]; then
190
- RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.download-rustc=if-unchanged"
191
- 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
192
+# RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.download-rustc=if-unchanged"
193
+# fi
194
fi
195
196
if [ "$ENABLE_GCC_CODEGEN" = "1" ]; then
0 commit comments