This repository was archived by the owner on Nov 6, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +13
-8
lines changed Expand file tree Collapse file tree 2 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,12 @@ variables:
37
37
before_script :
38
38
- rustup show
39
39
- cargo --version
40
+ retry :
41
+ max : 2
42
+ when :
43
+ - runner_system_failure
44
+ - unknown_failure
45
+ - api_failure
40
46
tags :
41
47
- linux-docker
42
48
@@ -63,28 +69,28 @@ cargo-check 0 3:
63
69
<< : *docker-cache-status
64
70
script :
65
71
- time cargo check --target $CARGO_TARGET --locked --no-default-features --verbose --color=always
66
- - sccache --stop-server
72
+ - sccache --show-stats
67
73
68
74
cargo-check 1 3 :
69
75
stage : test
70
76
<< : *docker-cache-status
71
77
script :
72
78
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --no-default-features --verbose --color=always
73
- - sccache --stop-server
79
+ - sccache --show-stats
74
80
75
81
cargo-check 2 3 :
76
82
stage : test
77
83
<< : *docker-cache-status
78
84
script :
79
85
- time cargo check --target $CARGO_TARGET --locked --manifest-path util/io/Cargo.toml --features "mio" --verbose --color=always
80
- - sccache --stop-server
86
+ - sccache --show-stats
81
87
82
88
cargo-check-evmbin :
83
89
stage : test
84
90
<< : *docker-cache-status
85
91
script :
86
92
- time cargo check -p evmbin --target $CARGO_TARGET --locked --verbose --color=always
87
- - sccache -s
93
+ - sccache --show-stats
88
94
89
95
cargo-check-benches :
90
96
stage : test
@@ -94,8 +100,7 @@ cargo-check-benches:
94
100
cargo check --all --benches --exclude ethash --target $CARGO_TARGET --locked --verbose --color=always;
95
101
(cd ethash; time cargo check --benches --features bench --target $CARGO_TARGET --locked --verbose --color=always)
96
102
)
97
- - sccache -s
98
- allow_failure : true # temp
103
+ - sccache --show-stats
99
104
100
105
cargo-audit :
101
106
stage : test
Original file line number Diff line number Diff line change 56
56
then
57
57
./parity tools hash $binary > $binary .sha3
58
58
else
59
- echo " > ${binary} cannot be hashed with cross-compiled binary (keccak256)"
59
+ echo " >[WARN] ${binary} cannot be hashed with cross-compiled binary (keccak256)"
60
60
fi
61
61
done
62
62
# show sccache statistics
63
- sccache --stop-server
63
+ sccache --show-stats
You can’t perform that action at this time.
0 commit comments