Skip to content

Commit 55383ba

Browse files
authored
Rollup merge of #150873 - reenable-gcc-download-ci, r=marcoieni
Reenable GCC CI download Now that we have the `gcc-dev` artifacts on CI. However, I forgot to bump download-ci-gcc-stamp before 🤦 So I will also have to bump it for this PR.
2 parents 98270a9 + 6426635 commit 55383ba

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Change this file to make users of the `download-ci-gcc` configuration download
22
a new version of GCC from CI, even if the GCC submodule hasn’t changed.
33

4-
Last change is for: https://github.com/rust-lang/rust/pull/138051
4+
Last change is for: https://github.com/rust-lang/rust/pull/150873

‎src/bootstrap/src/core/download.rs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ impl Config {
396396
";
397397
self.download_file(&format!("{base}/{gcc_sha}/{filename}"), &tarball, help_on_error);
398398
}
399-
self.unpack(&tarball, root_dir, "gcc");
399+
self.unpack(&tarball, root_dir, "gcc-dev");
400400
}
401401
}
402402

‎src/ci/run.sh‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,8 @@ else
187187
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set llvm.static-libstdcpp"
188188
fi
189189

190-
# Download GCC from CI on test builders (temporarily disabled because the CI gcc component
191-
# was renamed).
192-
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set gcc.download-ci-gcc=false"
190+
# Download GCC from CI on test builders
191+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set gcc.download-ci-gcc=true"
193192

194193
# download-rustc seems to be broken on CI after the stage0 redesign
195194
# Disable it until these issues are debugged and resolved

0 commit comments

Comments
 (0)