Skip to content

Commit

Permalink
no_alloc build for Travis CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jswrenn committed Sep 4, 2020
1 parent 986d62b commit 58afc5d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -6,25 +6,29 @@ matrix:
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 58afc5d

Please sign in to comment.