Skip to content

Commit 6a726f2

Browse files
Add a new block to ignore rules
1 parent 1e9d8a4 commit 6a726f2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/extract.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,15 @@ static IGNORE_BLOCK: &[(&str, &str)] = &[
2323
// Skip all groups invoking git commands
2424
("[command]/usr/bin/git", "##[endgroup]"),
2525
// Skip clock drift checks
26-
("== clock drift check ==", "== end clock drift check =="),
26+
("#[group]Clock drift check", "##[endgroup]"),
2727
// Skip environment variable dumps, as these can contain e.g. a SHA which is different in every
2828
// build.
2929
("env:", "##[endgroup]"),
30+
// See src/ci/scripts/dump-environment.sh in rust-lang/rust
31+
(
32+
"environment variables:",
33+
"biggest files in the working dir:",
34+
),
3035
];
3136

3237
lazy_static! {

0 commit comments

Comments
 (0)