Skip to content

Commit 11977b2

Browse files
committed
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.
1 parent 99ca0ae commit 11977b2

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
@@ -263,6 +263,8 @@ impl Step for GenerateCopyright {
263263
cache_dir
264264
};
265265

266+
let _guard = builder.group("generate-copyright");
267+
266268
let mut cmd = builder.tool_cmd(Tool::GenerateCopyright);
267269
cmd.env("CARGO_MANIFESTS", &cargo_manifests);
268270
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)