From 419cbf158c1c4388c50e279f57c3cee96db6e677 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Mon, 7 Oct 2019 22:17:14 -0400 Subject: [PATCH] Refactor workspace build --- .travis.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index e57e51b..2a8b24c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,14 +15,13 @@ before_script: - rustup component add rustfmt script: - - cd aeron_driver-sys + - cargo test --no-run - cargo test + - cargo test --release --no-run - cargo test --release - - cargo test --features "static" - - cd ../aeron-rs - - cargo test - - cargo test --release + - cd aeron_driver-sys/ + - cargo test --features "static" - cd .. - cargo clippy --all