Disable travis build on rust 1.14 on windows
This commit is contained in:
parent
28c7881643
commit
9a4961c823
|
@ -10,6 +10,15 @@ os:
|
||||||
- linux
|
- linux
|
||||||
- windows
|
- windows
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
# rand 0.4 actually needs Rust 1.22, which leads to build failures on Rust 1.14 on Windows.
|
||||||
|
# This is not a problem, because
|
||||||
|
# - we insist on rust 1.14 only for Debian, and
|
||||||
|
# - "rand" is only an optional dependency.
|
||||||
|
exclude:
|
||||||
|
- rust: 1.14.0
|
||||||
|
os: windows
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cargo build --verbose --features=fuzztarget
|
- cargo build --verbose --features=fuzztarget
|
||||||
- cargo build --verbose --features=rand
|
- cargo build --verbose --features=rand
|
||||||
|
|
Loading…
Reference in New Issue