File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 8
8
- windows
9
9
language : rust
10
10
rust :
11
- - 1.29.0
11
+ - 1.30.1
12
12
sudo : false
13
13
cache :
14
14
cargo : true
15
15
before_script :
16
16
- if ! cargo prune --version | grep -q "0.1.8"; then
17
17
cargo install cargo-prune --vers="0.1.8" --force;
18
18
fi
19
- - if ! rustfmt --version | grep -q "0.99.1 -stable"; then
19
+ - if ! rustfmt --version | grep -q "0.99.4 -stable"; then
20
20
rustup component add rustfmt-preview;
21
+ if ! rustfmt --version | grep -q "0.99.4-stable"; then
22
+ printf "Bad rustfmt version";
23
+ exit 1;
24
+ fi
21
25
fi
22
26
- if ! cargo clippy --version | grep -q "0.0.212"; then
23
27
rustup component add clippy-preview;
28
+ if ! cargo clippy --version | grep -q "0.0.212"; then
29
+ printf "Bad clippy version";
30
+ exit 1;
31
+ fi
24
32
fi
25
33
script :
26
34
- set -x;
You can’t perform that action at this time.
0 commit comments