File tree Expand file tree Collapse file tree 1 file changed +16
-23
lines changed Expand file tree Collapse file tree 1 file changed +16
-23
lines changed Original file line number Diff line number Diff line change @@ -19,26 +19,19 @@ matrix:
19
19
env : DO_FUZZ=true
20
20
- rust : stable
21
21
env : DO_FUZZ=true
22
- script :
23
- - |
24
- if [[ "$TRAVIS_RUST_VERSION" == stable ]]
25
- then
26
- rustup component add rustfmt
27
- cargo fmt --all -- --check
28
- fi
29
- - |
30
- cargo build --verbose &&
31
- cargo test --verbose &&
32
- cargo test --verbose --features serde &&
33
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo check --verbose --no-default-features) &&
34
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --features union) &&
35
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --all-features) &&
36
- ([ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose bench) &&
37
- ([ $TRAVIS_RUST_VERSION != nightly ] || bash ./scripts/run_miri.sh) &&
38
- if [ "$DO_FUZZ" = true ]
39
- then
40
- (
41
- cd fuzz
42
- ./travis-fuzz.sh
43
- )
44
- fi
22
+ script : |
23
+ cargo build --verbose &&
24
+ cargo test --verbose &&
25
+ cargo test --verbose --features serde &&
26
+ ([ $TRAVIS_RUST_VERSION != nightly ] || cargo check --verbose --no-default-features) &&
27
+ ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --features union) &&
28
+ ([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --all-features) &&
29
+ ([ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose bench) &&
30
+ ([ $TRAVIS_RUST_VERSION != nightly ] || bash ./scripts/run_miri.sh) &&
31
+ if [ "$DO_FUZZ" = true ]
32
+ then
33
+ (
34
+ cd fuzz
35
+ ./travis-fuzz.sh
36
+ )
37
+ fi
You can’t perform that action at this time.
0 commit comments