Skip to content

Commit

Permalink
More improvements to CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
torkleyy committed Jan 5, 2019
1 parent 22619b6 commit b65babf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,15 @@ script:
cargo build --all-features --verbose;
cargo test --all-features --verbose --no-run;
cargo bench --verbose --no-run --all-features;
elif [ "$TRAVIS_RUST_VERSION" == "1.28.0" ]; then
cargo check --tests --no-default-features;
cargo check --tests --no-default-features --features "parallel";
cargo check --tests --no-default-features --features "serde";
cargo check --tests --no-default-features --features "serde,parallel";
else
cargo build --verbose --no-default-features;
cargo test --verbose --no-default-features;
cargo test --verbose --all-features;
cargo test --verbose --features "parallel,serde";
fi
- cargo build --manifest-path ./specs-derive/Cargo.toml --verbose
- cargo test --manifest-path ./specs-derive/Cargo.toml --verbose
Expand Down

0 comments on commit b65babf

Please sign in to comment.