From 381388d9c2ee5f12035958f36e147ef8952da503 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Thu, 18 Apr 2019 06:45:25 +1000 Subject: [PATCH] Move state processing test into own build --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f75f9e6ea..7a0849894 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,12 @@ before_install: - sudo chown $USER /usr/local/bin/protoc - sudo chown -R $USER /usr/local/include/google env: - - BUILD= - - BUILD=--release + - BUILD=--all + - BUILD=--release --all + - BUILD= --manifest-path eth2/state_processing/Cargo.toml --release --features fake_crypto script: - - cargo build --verbose $BUILD --all - - cargo test --verbose $BUILD --all - - cargo test --manifest-path eth2/state_processing/Cargo.toml --verbose --release --features fake_crypto + - cargo build --verbose $BUILD + - cargo test --verbose $BUILD - cargo fmt --all -- --check # No clippy until later... #- cargo clippy