From 0e4d65d9ebbf4b3f462f5040acaf499e21fec7e2 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 13 Oct 2018 19:59:41 -0700 Subject: [PATCH] Fix .travis.yml that was failing to parse --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0a076ce..3b1ea80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,10 @@ language: rust matrix: include: - rust: stable + env: - FEATURES="i128" - rust: beta + env: - FEATURES="i128" - rust: nightly env: @@ -22,4 +24,3 @@ script: - cargo build --verbose --no-default-features --features "$FEATURES" - cargo test --verbose --no-default-features --features "$FEATURES" - if [ "$BUILD_BENCH" == "true" ]; then cargo bench --verbose --no-run --features "$FEATURES"; fi -