Rollup merge of #113800 - oli-obk:gha_ci_cycle, r=jyn514

Avoid another gha group nesting

fixes https://github.com/rust-lang/rust/issues/113798 (`x test error_index_generator` did not work locally anymore)

r? ``@jyn514``
This commit is contained in:
Matthias Krüger 2023-07-20 17:19:32 +02:00 committed by GitHub
commit 6102785a29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2087,10 +2087,11 @@ fn run(self, builder: &Builder<'_>) {
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));