From 78d1fe0eb0c69dec794c14591479cfed900e680f Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Sat, 5 Jan 2019 07:52:26 -0800 Subject: [PATCH] ci: limit min rust version to cargo check (#829) --- .travis.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 47aede415..18906b71f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,10 +9,6 @@ addons: matrix: include: - # This represents the minimum Rust version supported by Tokio. Updating this - # should be done in a dedicated PR and cannot be greater than two 0.x - # releases prior to the current stable. - - rust: 1.26.0 - rust: stable - rust: beta - rust: nightly @@ -22,6 +18,15 @@ matrix: - env: TARGET=i686-unknown-freebsd - env: TARGET=i686-unknown-linux-gnu + # This represents the minimum Rust version supported by Tokio. Updating this + # should be done in a dedicated PR and cannot be greater than two 0.x + # releases prior to the current stable. + # + # Tests are not run as tests may require newer versions of rust. + - rust: 1.26.0 + script: | + cargo check --all + # Test combinations of enabled features. - rust: stable script: |