From 43e3efa9d508df8334e63e587fc62167e0e296c6 Mon Sep 17 00:00:00 2001 From: Zalathar Date: Sat, 8 Mar 2025 12:55:43 +1100 Subject: [PATCH 1/3] (DO NOT MERGE) Dummy change to tests for investigation --- tests/ui/instrument-coverage/bad-value.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui/instrument-coverage/bad-value.rs b/tests/ui/instrument-coverage/bad-value.rs index 3441738529162..1887851f4b7b2 100644 --- a/tests/ui/instrument-coverage/bad-value.rs +++ b/tests/ui/instrument-coverage/bad-value.rs @@ -1,5 +1,5 @@ //@ revisions: blank bad -//@ [blank] compile-flags: -Cinstrument-coverage= +//@ [blank] compile-flags: -Cinstrument-coverage=_ //@ [bad] compile-flags: -Cinstrument-coverage=bad-value fn main() {} From bd340a8e5613913b231b06571ac048f1f8072074 Mon Sep 17 00:00:00 2001 From: Zalathar Date: Sat, 8 Mar 2025 14:22:59 +1100 Subject: [PATCH 2/3] Dummy change to bootstrap, to see if that's what was changing things --- src/bootstrap/src/core/build_steps/compile.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/src/core/build_steps/compile.rs b/src/bootstrap/src/core/build_steps/compile.rs index 26c5c2bf411b9..5cc451c4394ca 100644 --- a/src/bootstrap/src/core/build_steps/compile.rs +++ b/src/bootstrap/src/core/build_steps/compile.rs @@ -992,6 +992,7 @@ impl Step for Rustc { } fn make_run(run: RunConfig<'_>) { + // dummy change let crates = run.cargo_crates_in_set(); run.builder.ensure(Rustc { compiler: run From 9828ba8f083b82613da32383b98804a464bac153 Mon Sep 17 00:00:00 2001 From: Zalathar Date: Sat, 8 Mar 2025 14:36:34 +1100 Subject: [PATCH 3/3] Add `src/bootstrap` to if-unchanged allowed paths --- src/bootstrap/src/core/config/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/src/core/config/config.rs b/src/bootstrap/src/core/config/config.rs index ac24da9f86b25..1b655305e7f5e 100644 --- a/src/bootstrap/src/core/config/config.rs +++ b/src/bootstrap/src/core/config/config.rs @@ -48,6 +48,7 @@ pub(crate) const RUSTC_IF_UNCHANGED_ALLOWED_PATHS: &[&str] = &[ ":!src/rustdoc-json-types", ":!tests", ":!triagebot.toml", + ":!src/bootstrap", // lol, lmao ]; macro_rules! check_ci_llvm {