From 9834af7ed943d0156571a736b96fc989374d56a2 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 11 Jun 2016 01:31:12 -0700 Subject: [PATCH 1/2] Stop building on 1.5.0 Syntex no longer supports this version of Rust. --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c064811d..360b35eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ rust: - stable - beta - nightly -- 1.5.0 addons: apt: packages: @@ -18,7 +17,7 @@ script: - (cd serde && travis-cargo build) - (cd serde && travis-cargo test) - (cd serde && travis-cargo --only nightly test -- --features nightly-testing) -- (cd serde && travis-cargo --skip 1.5.0 build -- --no-default-features) +- (cd serde && travis-cargo build -- --no-default-features) - (cd serde && travis-cargo --only nightly build -- --no-default-features) - (cd serde && travis-cargo --only nightly build -- --no-default-features --features alloc) - (cd serde && travis-cargo --only nightly build -- --no-default-features --features collections) @@ -26,7 +25,7 @@ script: - (cd serde_tests && travis-cargo --only nightly test -- --features nightly-testing) - (cd serde_macros && travis-cargo --only nightly test -- --features nightly-testing) - (cd serde_macros && travis-cargo --only nightly bench -- --features nightly-testing) -- (cd examples/serde-syntex-example && travis-cargo --skip 1.5.0 run) +- (cd examples/serde-syntex-example && travis-cargo run) - (cd examples/serde-syntex-example && travis-cargo --only nightly run -- --features nightly --no-default-features) - (cd serde && travis-cargo --only stable doc) - (cd serde_codegen && travis-cargo --only stable doc) From 7375b4e84747f5f8798f0838fa00a8593f410821 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 11 Jun 2016 08:59:02 -0700 Subject: [PATCH 2/2] Add travis builds for 1.6.0 and 1.7.0 --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 360b35eb..7e6f0f1f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,8 @@ rust: - stable - beta - nightly +- 1.7.0 +- 1.8.0 addons: apt: packages: