Skip to content

Commit 70a62b3

Browse files
committed
use_alloc build for Travis CI; increase MSRV to 1.36.0
1 parent 450ec0c commit 70a62b3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,25 @@ language: rust
22
sudo: false
33
matrix:
44
include:
5-
- rust: 1.32.0
5+
- rust: 1.36.0
66
script:
77
- |
88
cargo build --verbose --no-default-features &&
9+
cargo build --verbose --no-default-features --features "use_alloc" &&
910
cargo build --verbose --features "$FEATURES"
1011
- rust: stable
1112
script:
1213
- |
1314
cargo build --verbose --no-default-features &&
15+
cargo build --verbose --no-default-features --features "use_alloc" &&
1416
cargo build --verbose --features "$FEATURES" &&
1517
cargo test --verbose --features "$FEATURES" &&
1618
cargo bench --no-run --verbose --features "$FEATURES"
1719
- rust: beta
1820
script:
1921
- |
2022
cargo build --verbose --no-default-features &&
23+
cargo build --verbose --no-default-features --features "use_alloc" &&
2124
cargo build --verbose --features "$FEATURES" &&
2225
cargo test --verbose --features "$FEATURES" &&
2326
cargo bench --no-run --verbose --features "$FEATURES"

0 commit comments

Comments
 (0)