From 5ce269ae7dbcc2d177b6b7b80aab237db61c6464 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 9 Jan 2018 15:53:06 -0800 Subject: [PATCH] chore(ci): update CI minimum Rust to 1.18 (because mio) --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5cb006ae..336ebe1d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,7 @@ matrix: env: FEATURES="--no-default-features" - rust: stable env: FEATURES="--features compat" - - rust: 1.17.0 - env: BUILD_ONLY=1 + - rust: 1.18.0 cache: apt: true @@ -24,8 +23,8 @@ cache: script: - ./.travis/readme.py - - cargo build --verbose $FEATURES - - 'if [ "$BUILD_ONLY" != "1" ]; then cargo test --verbose $FEATURES; fi' + - cargo build $FEATURES + - 'if [ "$BUILD_ONLY" != "1" ]; then cargo test $FEATURES; fi' - 'if [ $TRAVIS_RUST_VERSION = nightly ]; then for f in ./benches/*.rs; do cargo test --bench $(basename $f .rs) $FEATURES; done; fi' addons: