travis: don't test individual features on beta&nightly
This commit is contained in:
parent
89dce178c8
commit
d6625b4b49
11
.travis.yml
11
.travis.yml
|
@ -3,8 +3,6 @@ language: rust
|
||||||
# We need this for the matrix, install is quick although unused
|
# We need this for the matrix, install is quick although unused
|
||||||
rust:
|
rust:
|
||||||
- stable
|
- stable
|
||||||
- beta
|
|
||||||
- nightly
|
|
||||||
|
|
||||||
sudo: required
|
sudo: required
|
||||||
|
|
||||||
|
@ -66,6 +64,15 @@ env:
|
||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
include:
|
include:
|
||||||
|
# continue testing the full crate on beta&nightly to spot rustc regressions
|
||||||
|
- rust: beta
|
||||||
|
env: FEATURES="all"
|
||||||
|
- rust: beta
|
||||||
|
env: FEATURES="anvil" ANVIL_FEATURES="all"
|
||||||
|
- rust: nightly
|
||||||
|
env: FEATURES="all"
|
||||||
|
- rust: nightly
|
||||||
|
env: FEATURES="anvil" ANVIL_FEATURES="all"
|
||||||
# special features for lint & fmt
|
# special features for lint & fmt
|
||||||
- rust: stable
|
- rust: stable
|
||||||
env: FEATURES="cargo-fmt"
|
env: FEATURES="cargo-fmt"
|
||||||
|
|
Loading…
Reference in New Issue