Skip to content

Commit 10e9340

Browse files
authored
Unrolled build for #147647
Rollup merge of #147647 - Noratrieb:bootstrap-groups, r=Zalathar Hide vendoring and copyright in GHA group These two steps are currently the most verbose steps in a dist-linux build, which makes it harder to find more interesting parts. Hide them in a group like most things. For example, see https://github.com/rust-lang/rust/actions/runs/18462295959/job/52596384752
2 parents 2f7620a + 11977b2 commit 10e9340

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/bootstrap/src/core/build_steps/run.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,8 @@ impl Step for GenerateCopyright {
274274
cache_dir
275275
};
276276

277+
let _guard = builder.group("generate-copyright");
278+
277279
let mut cmd = builder.tool_cmd(Tool::GenerateCopyright);
278280
cmd.env("CARGO_MANIFESTS", &cargo_manifests);
279281
cmd.env("LICENSE_METADATA", &license_metadata);

src/bootstrap/src/core/build_steps/vendor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ impl Step for Vendor {
7474
/// This function runs `cargo vendor` and ensures all required submodules
7575
/// are initialized before vendoring begins.
7676
fn run(self, builder: &Builder<'_>) -> Self::Output {
77-
builder.info(&format!("Vendoring sources to {:?}", self.root_dir));
77+
let _guard = builder.group(&format!("Vendoring sources to {:?}", self.root_dir));
7878

7979
let mut cmd = command(&builder.initial_cargo);
8080
cmd.arg("vendor");

0 commit comments

Comments
 (0)