diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-07-17 17:42:59 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2023-07-20 09:42:53 +0000 |
| commit | 7de9b654b7888ee387a9907f7a5f9b824ca053be (patch) | |
| tree | c84fc9ae62e2ab7359f8f4b5ea73d12626b00e78 | |
| parent | b3c7a7e749761b61ee587fda5fa24aae444865e9 (diff) | |
| download | rust-7de9b654b7888ee387a9907f7a5f9b824ca053be.tar.gz rust-7de9b654b7888ee387a9907f7a5f9b824ca053be.zip | |
Avoid another gha group nesting
| -rw-r--r-- | src/bootstrap/test.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 44b8c2d8c01..c69b21488d2 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -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)); |
