Skip to content

Commit

Permalink
Add a new block to ignore rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark-Simulacrum committed Mar 20, 2024
1 parent 1e9d8a4 commit 6a726f2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/extract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,15 @@ static IGNORE_BLOCK: &[(&str, &str)] = &[
// Skip all groups invoking git commands
("[command]/usr/bin/git", "##[endgroup]"),
// Skip clock drift checks
("== clock drift check ==", "== end clock drift check =="),
("#[group]Clock drift check", "##[endgroup]"),
// Skip environment variable dumps, as these can contain e.g. a SHA which is different in every
// build.
("env:", "##[endgroup]"),
// See src/ci/scripts/dump-environment.sh in rust-lang/rust
(
"environment variables:",
"biggest files in the working dir:",
),
];

lazy_static! {
Expand Down

0 comments on commit 6a726f2

Please sign in to comment.