Skip to content

Commit 685dcbc

Browse files
authored
Merge pull request #4198 from Kobzol/remove-gha-summary
Remove GitHub job summaries
2 parents 0074b00 + 9594ba0 commit 685dcbc

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

tests/ui.rs

+5-9
Original file line numberDiff line numberDiff line change
@@ -217,15 +217,11 @@ fn run_tests(
217217
ui_test::default_file_filter,
218218
// This could be used to overwrite the `Config` on a per-test basis.
219219
|_, _| {},
220-
(
221-
match args.format {
222-
Format::Terse => status_emitter::Text::quiet(),
223-
Format::Pretty => status_emitter::Text::verbose(),
224-
},
225-
status_emitter::Gha::</* GHA Actions groups*/ false> {
226-
name: format!("{mode:?} {path} ({target})"),
227-
},
228-
),
220+
// No GHA output as that would also show in the main rustc repo.
221+
match args.format {
222+
Format::Terse => status_emitter::Text::quiet(),
223+
Format::Pretty => status_emitter::Text::verbose(),
224+
},
229225
)
230226
}
231227

0 commit comments

Comments
 (0)