d094209774
This should prevent accidentally inserting something under one of these cfgs that is available only on a newer rustc. For example if something is changed in the Duration serialization, but that change works only on a recent rustc, our test suite will not have caught it before.
23 lines
272 B
YAML
23 lines
272 B
YAML
sudo: false
|
|
language: rust
|
|
cache: cargo
|
|
|
|
# run builds for all the trains (and more)
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
- 1.13.0
|
|
- 1.15.0
|
|
- 1.20.0
|
|
- 1.21.0
|
|
- 1.25.0
|
|
- 1.26.0
|
|
|
|
matrix:
|
|
include:
|
|
- rust: nightly
|
|
env: CLIPPY=true
|
|
|
|
script: ./travis.sh
|