Skip to content

Commit

Permalink
Rollup merge of rust-lang#113800 - oli-obk:gha_ci_cycle, r=jyn514
Browse files Browse the repository at this point in the history
Avoid another gha group nesting

fixes rust-lang#113798 (`x test error_index_generator` did not work locally anymore)

r? `@jyn514`
  • Loading branch information
matthiaskrgr authored Jul 20, 2023
2 parents be32e34 + 7de9b65 commit 4497c9b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bootstrap/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2087,10 +2087,11 @@ impl Step for ErrorIndex {
let mut tool = tool::ErrorIndex::command(builder);
tool.arg("markdown").arg(&output);

let _guard =
let guard =
builder.msg(Kind::Test, compiler.stage, "error-index", compiler.host, compiler.host);
let _time = util::timeit(&builder);
builder.run_quiet(&mut tool);
drop(guard);
// The tests themselves need to link to std, so make sure it is
// available.
builder.ensure(compile::Std::new(compiler, compiler.host));
Expand Down

0 comments on commit 4497c9b

Please sign in to comment.