2016-06-11 18:18:30 -05:00
|
|
|
sudo: false
|
2014-09-07 03:27:03 -05:00
|
|
|
language: rust
|
2015-05-21 00:44:50 -05:00
|
|
|
rust:
|
2017-01-02 16:59:00 -06:00
|
|
|
- 1.13.0
|
2016-03-06 20:14:12 -06:00
|
|
|
- stable
|
2016-07-10 16:25:17 -05:00
|
|
|
- beta
|
2016-10-15 16:03:42 -05:00
|
|
|
- nightly
|
2015-08-28 00:51:11 -05:00
|
|
|
before_script:
|
2016-04-13 10:11:02 -05:00
|
|
|
- pip install 'travis-cargo<0.2' --user
|
|
|
|
- export PATH=$HOME/.local/bin:$PATH
|
2015-08-28 00:51:11 -05:00
|
|
|
script:
|
2016-04-13 10:11:02 -05:00
|
|
|
- (cd serde && travis-cargo build)
|
2017-01-24 22:47:31 -06:00
|
|
|
- (cd serde && travis-cargo --only beta test)
|
2016-07-17 15:17:23 -05:00
|
|
|
- (cd serde && travis-cargo --only nightly test -- --features unstable-testing)
|
2016-06-11 03:31:12 -05:00
|
|
|
- (cd serde && travis-cargo build -- --no-default-features)
|
2016-05-01 08:30:35 -05:00
|
|
|
- (cd serde && travis-cargo --only nightly build -- --no-default-features --features alloc)
|
|
|
|
- (cd serde && travis-cargo --only nightly build -- --no-default-features --features collections)
|
2016-06-28 22:43:48 -05:00
|
|
|
- (cd testing && travis-cargo --skip nightly test)
|
2016-07-17 15:17:23 -05:00
|
|
|
- (cd testing && travis-cargo --only nightly test -- --features unstable-testing)
|
2017-01-25 22:27:40 -06:00
|
|
|
- (cd testing/no-std-tests && travis-cargo --only nightly build)
|
2016-04-13 10:11:02 -05:00
|
|
|
- (cd serde && travis-cargo --only stable doc)
|
2015-05-21 00:44:50 -05:00
|
|
|
env:
|
|
|
|
global:
|
2016-03-06 20:14:12 -06:00
|
|
|
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
|