summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-01-05 07:52:26 -0800
committerToby Lawrence <tobz@users.noreply.github.com>2019-01-05 10:52:26 -0500
commit78d1fe0eb0c69dec794c14591479cfed900e680f (patch)
tree2d22d3aaf4950dc5bf1a9a51df73a4a050b2afd5
parentfc8cde383aae5e4ce487fc2792cf408f44d408f9 (diff)
ci: limit min rust version to cargo check (#829)
-rw-r--r--.travis.yml13
1 files changed, 9 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 47aede41..18906b71 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: |