Skip to content

Commit 36b03be

Browse files
Add a new block to ignore rules
1 parent 1e9d8a4 commit 36b03be

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: src/extract.rs

+5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ static IGNORE_BLOCK: &[(&str, &str)] = &[
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)