We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e9d8a4 commit 6a726f2Copy full SHA for 6a726f2
src/extract.rs
@@ -23,10 +23,15 @@ static IGNORE_BLOCK: &[(&str, &str)] = &[
23
// Skip all groups invoking git commands
24
("[command]/usr/bin/git", "##[endgroup]"),
25
// Skip clock drift checks
26
- ("== clock drift check ==", "== end clock drift check =="),
+ ("#[group]Clock drift check", "##[endgroup]"),
27
// Skip environment variable dumps, as these can contain e.g. a SHA which is different in every
28
// build.
29
("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
+ ),
35
];
36
37
lazy_static! {
0 commit comments