Skip to content

Commit

Permalink
use_alloc build for Travis CI; increase MSRV to 1.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jswrenn committed Sep 4, 2020
1 parent 986d62b commit 8fc3d65
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Expand Up @@ -2,29 +2,33 @@ language: rust
sudo: false
matrix:
include:
- rust: 1.32.0
- rust: 1.36.0
script:
- |
cargo build --verbose --no-default-features &&
cargo build --verbose --no-default-features --features "use_alloc" &&
cargo build --verbose --features "$FEATURES"
- rust: stable
script:
- |
cargo build --verbose --no-default-features &&
cargo build --verbose --no-default-features --features "use_alloc" &&
cargo build --verbose --features "$FEATURES" &&
cargo test --verbose --features "$FEATURES" &&
cargo bench --no-run --verbose --features "$FEATURES"
- rust: beta
script:
- |
cargo build --verbose --no-default-features &&
cargo build --verbose --no-default-features --features "use_alloc" &&
cargo build --verbose --features "$FEATURES" &&
cargo test --verbose --features "$FEATURES" &&
cargo bench --no-run --verbose --features "$FEATURES"
- rust: nightly
script:
- |
cargo build --verbose --no-default-features &&
cargo build --verbose --no-default-features --features "use_alloc" &&
cargo build --verbose --features "$FEATURES" &&
cargo test --verbose --features "$FEATURES" &&
cargo bench --no-run --verbose --features "$FEATURES"
Expand Down

0 comments on commit 8fc3d65

Please sign in to comment.