Remove GitHub job summaries

They don't seem to be used by miri contributors, and they pollute job summaries in rust-lang/rust.
This commit is contained in:
Jakub Beránek 2025-02-20 08:55:15 +01:00
parent e2ba35a451
commit 72538180a6

View file

@ -217,15 +217,10 @@ fn run_tests(
ui_test::default_file_filter,
// This could be used to overwrite the `Config` on a per-test basis.
|_, _| {},
(
match args.format {
Format::Terse => status_emitter::Text::quiet(),
Format::Pretty => status_emitter::Text::verbose(),
},
status_emitter::Gha::</* GHA Actions groups*/ false> {
name: format!("{mode:?} {path} ({target})"),
},
),
match args.format {
Format::Terse => status_emitter::Text::quiet(),
Format::Pretty => status_emitter::Text::verbose(),
},
)
}