From f3d967c02088e108c988d7387b61f2920e630de4 Mon Sep 17 00:00:00 2001 From: Chris Wong <lambda.fairy@gmail.com> Date: Sun, 26 Aug 2018 20:46:29 +1200 Subject: [PATCH] Travis: tweak build commands to work around rust-lang/cargo#5849 --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 63b3b50..9177105 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,9 @@ before_script: - rustup component add clippy-preview --toolchain=nightly script: - - cargo build --features="iron" - - cargo build --features="rocket" - - cargo build --features="actix-web" + - (cd maud && cargo build --features="iron") + - (cd maud && cargo build --features="rocket") + - (cd maud && cargo build --features="actix-web") - cargo test --all - (cd benchmarks && cargo bench --no-run) - |