Skip to content

Commit d8aa6d7

Browse files
authored
Unrolled build for rust-lang#119298
Rollup merge of rust-lang#119298 - onur-ozkan:silence-change-tracker-warning-for-ci, r=Mark-Simulacrum suppress change-tracker warnings in CI containers Fixes rust-lang#119296
2 parents 1a47f5b + 8dd6fac commit d8aa6d7

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

src/bootstrap/src/bin/main.rs

+17-15
Original file line numberDiff line numberDiff line change
@@ -149,25 +149,27 @@ fn check_version(config: &Config) -> Option<String> {
149149

150150
let changes = find_recent_config_change_ids(id);
151151

152-
if !changes.is_empty() {
153-
msg.push_str("There have been changes to x.py since you last updated:\n");
154-
155-
for change in changes {
156-
msg.push_str(&format!(" [{}] {}\n", change.severity.to_string(), change.summary));
157-
msg.push_str(&format!(
158-
" - PR Link https://github.com/rust-lang/rust/pull/{}\n",
159-
change.change_id
160-
));
161-
}
152+
if changes.is_empty() {
153+
return None;
154+
}
155+
156+
msg.push_str("There have been changes to x.py since you last updated:\n");
162157

163-
msg.push_str("NOTE: to silence this warning, ");
158+
for change in changes {
159+
msg.push_str(&format!(" [{}] {}\n", change.severity.to_string(), change.summary));
164160
msg.push_str(&format!(
165-
"update `config.toml` to use `change-id = {latest_change_id}` instead"
161+
" - PR Link https://github.com/rust-lang/rust/pull/{}\n",
162+
change.change_id
166163
));
164+
}
167165

168-
if io::stdout().is_terminal() && !config.dry_run() {
169-
t!(fs::write(warned_id_path, latest_change_id.to_string()));
170-
}
166+
msg.push_str("NOTE: to silence this warning, ");
167+
msg.push_str(&format!(
168+
"update `config.toml` to use `change-id = {latest_change_id}` instead"
169+
));
170+
171+
if io::stdout().is_terminal() && !config.dry_run() {
172+
t!(fs::write(warned_id_path, latest_change_id.to_string()));
171173
}
172174
} else {
173175
msg.push_str("WARNING: The `change-id` is missing in the `config.toml`. This means that you will not be able to track the major changes made to the bootstrap configurations.\n");

src/ci/run.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ source "$ci_dir/shared.sh"
4747

4848
export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
4949

50+
# suppress change-tracker warnings on CI
51+
if [ "$CI" != "" ]; then
52+
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set change-id=99999999"
53+
fi
54+
5055
if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf || \
5156
isCiBranch automation/bors/try; then
5257
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
@@ -237,7 +242,7 @@ fi
237242

238243
if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
239244
rm -f config.toml
240-
$SRC/configure --set rust.parallel-compiler
245+
$SRC/configure --set change-id=99999999 --set rust.parallel-compiler
241246

242247
# Save the build metrics before we wipe the directory
243248
if [ "$HAS_METRICS" = 1 ]; then

0 commit comments

Comments
 (0)