From ccb6e44a6dda9fd2bf21361560ab97962478cfc5 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 14 Aug 2016 12:25:30 -0700 Subject: [PATCH] Skip preserve_order build on 1.8.0 Linked-hash-map does not support 1.8.0. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e6d7d52..2d68b32 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,7 @@ script: - | if [ -z $BENCH ]; then (cd json && travis-cargo build) && - (cd json && travis-cargo build -- --features preserve_order) && + (cd json && travis-cargo --skip 1.8.0 build -- --features preserve_order) && (cd json && travis-cargo --only nightly test) && (cd json_tests && travis-cargo --skip nightly test -- --features with-syntex --no-default-features) && (cd json_tests && travis-cargo --only nightly test -- --features unstable-testing) &&