Travis: fix feature names.
This commit is contained in:
parent
dbd25b4898
commit
21483da56b
12
.travis.yml
12
.travis.yml
|
@ -2,19 +2,19 @@ language: rust
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- rust: stable
|
- rust: stable
|
||||||
env: FEATURES='use_std'
|
env: FEATURES='std'
|
||||||
- rust: beta
|
- rust: beta
|
||||||
env: FEATURES='use_std'
|
env: FEATURES='std'
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: FEATURES=''
|
env: FEATURES=''
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: FEATURES='use_alloc'
|
env: FEATURES='alloc'
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: FEATURES='use_collections'
|
env: FEATURES='collections'
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: FEATURES='use_alloc use_collections'
|
env: FEATURES='alloc collections'
|
||||||
- rust: nightly
|
- rust: nightly
|
||||||
env: FEATURES='use_std use_alloc use_collections'
|
env: FEATURES='std alloc collections'
|
||||||
script:
|
script:
|
||||||
- cargo build --no-default-features --features "$FEATURES"
|
- cargo build --no-default-features --features "$FEATURES"
|
||||||
notifications:
|
notifications:
|
||||||
|
|
Loading…
Reference in New Issue