Skip to content

Commit 6102785

Browse files
authored
Rollup merge of #113800 - oli-obk:gha_ci_cycle, r=jyn514
Avoid another gha group nesting fixes #113798 (`x test error_index_generator` did not work locally anymore) r? ``@jyn514``
2 parents 8c17e07 + 7de9b65 commit 6102785

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/test.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2087,10 +2087,11 @@ impl Step for ErrorIndex {
20872087
let mut tool = tool::ErrorIndex::command(builder);
20882088
tool.arg("markdown").arg(&output);
20892089

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

0 commit comments

Comments
 (0)