From 17699b7ec35e0112a9923bc922e474226b18469a Mon Sep 17 00:00:00 2001 From: Luxko Date: Sat, 25 Feb 2017 20:47:43 +0800 Subject: [PATCH] fix build script --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9768b66..7539fd4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,5 @@ rust: script: - cargo build && cargo test - - if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then cargo bench; - - if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then cargo build --features "use_simd" && cargo test --features "use_simd" && cargo bench --features "use_simd" + - if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then cargo bench; fi + - if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then cargo build --features "use_simd" && cargo test --features "use_simd" && cargo bench --features "use_simd"; fi