From d6625b4b4919ecb24fccdeb68ff7e9c482eb9b34 Mon Sep 17 00:00:00 2001 From: Victor Berger Date: Wed, 6 Feb 2019 17:27:12 +0100 Subject: [PATCH] travis: don't test individual features on beta&nightly --- .travis.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index fa7d771..db5c4fd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,6 @@ language: rust # We need this for the matrix, install is quick although unused rust: - stable - - beta - - nightly sudo: required @@ -66,6 +64,15 @@ env: matrix: fast_finish: true include: + # continue testing the full crate on beta&nightly to spot rustc regressions + - rust: beta + env: FEATURES="all" + - rust: beta + env: FEATURES="anvil" ANVIL_FEATURES="all" + - rust: nightly + env: FEATURES="all" + - rust: nightly + env: FEATURES="anvil" ANVIL_FEATURES="all" # special features for lint & fmt - rust: stable env: FEATURES="cargo-fmt"