From 1d142ea8b02731c4a5d1669e92291aa1eb87f1d5 Mon Sep 17 00:00:00 2001 From: Sergey Pepyakin Date: Wed, 3 Jul 2019 15:27:41 +0200 Subject: [PATCH] Add vec_memory feature for travis build --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7336c16..9dc4375 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,8 @@ script: - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo check --benches --manifest-path=benches/Cargo.toml; fi # Make sure `no_std` version checks. - if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo +nightly check --no-default-features --features core; fi +# Check that `vec_memory` feature works. +- cargo check --features vec_memory - travis_wait 60 ./test.sh - ./doc.sh