Skip to content

Commit 1420b0b

Browse files
committed
extract: update to the new github actions log format
"##[section]" is not used anymore unfortunately.
1 parent 328e1ec commit 1420b0b

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/extract.rs

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,22 @@ static IGNORE_BLOCK: &[(&str, &str)] = &[
1616
("Disk usage after running", "travis_time:end:"),
1717
// Skip environment varialbes
1818
(
19-
"##[section]Starting: Show environment variables",
20-
"##[section]Finishing: Show environment variables",
19+
"##[group]Run src/ci/scripts/dump-environment.sh",
20+
"##[group]",
2121
),
2222
// Skip initialization as it involves submodules, which can change often
2323
(
24-
"dirname /home/vsts/work/1/s/src/ci/init_repo.sh",
25-
"##[section]Finishing: Check out submodules",
24+
"##[group]Run src/ci/scripts/checkout-submodules.sh",
25+
"##[group]",
2626
),
2727
// Skip AWS cli installation, it involves network (so changes)
28-
(
29-
"##[section]Starting: Install awscli",
30-
"##[section]Finishing: Install awscli",
31-
),
28+
("##[group]Run src/ci/scripts/install-awscli.sh", "##[group]"),
3229
// Cargo downloads crates in unpredictable order
3330
("Downloading crates ...", "Compiling"),
3431
// Skip all groups invoking git commands
3532
("[command]/usr/bin/git", "##[endgroup]"),
33+
// Skip clock drift checks
34+
("== clock drift check ==", "== end clock drift check =="),
3635
];
3736

3837
lazy_static! {

0 commit comments

Comments
 (0)