@@ -16,23 +16,22 @@ static IGNORE_BLOCK: &[(&str, &str)] = &[
16
16
( "Disk usage after running" , "travis_time:end:" ) ,
17
17
// Skip environment varialbes
18
18
(
19
- "##[section]Starting: Show environment variables " ,
20
- "##[section]Finishing: Show environment variables " ,
19
+ "##[group]Run src/ci/scripts/dump- environment.sh " ,
20
+ "##[group] " ,
21
21
) ,
22
22
// Skip initialization as it involves submodules, which can change often
23
23
(
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] " ,
26
26
) ,
27
27
// 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]" ) ,
32
29
// Cargo downloads crates in unpredictable order
33
30
( "Downloading crates ..." , "Compiling" ) ,
34
31
// Skip all groups invoking git commands
35
32
( "[command]/usr/bin/git" , "##[endgroup]" ) ,
33
+ // Skip clock drift checks
34
+ ( "== clock drift check ==" , "== end clock drift check ==" ) ,
36
35
] ;
37
36
38
37
lazy_static ! {
0 commit comments