From 16931b006d49d5371f8f2c96aacf8b530643f514 Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Thu, 4 Aug 2016 20:41:09 -0400 Subject: [PATCH] Don't build regex-debug on Rust 1.3. Docopt uses lazy_static! 2.x, but lazy_static required a new minimum Rust version in 2.1. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b8a3de88b5..9eed600032 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,8 +7,8 @@ rust: sudo: false script: - cargo build --verbose - - cargo build --verbose --manifest-path=regex-debug/Cargo.toml - if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then + cargo build --verbose --manifest-path=regex-debug/Cargo.toml; RUSTFLAGS="-C target-feature=+ssse3" cargo test --verbose --features 'simd-accel pattern'; else travis_wait cargo test --verbose;