aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 4ebd64e..1b1f513 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -62,9 +62,9 @@ install:
script:
# If this is a normal, non-deployment build...
- - if [[ -z $TARGET && -z $CLIPPY ]]; then cargo build --verbose && RUST_BACKTRACE=1 cargo test; fi
+ - if [[ -z $TARGET && -z $CLIPPY ]]; then cargo build && RUST_BACKTRACE=1 cargo test; fi
- if [[ -n $CLIPPY ]]; then cargo clippy -- --deny clippy::all; fi
- - if [[ -n $TARGET ]]; then cargo build --verbose --release --target $TARGET; fi
+ - if [[ -n $TARGET ]]; then cargo build --release --locked --target $TARGET; fi
before_deploy:
# If this is a binary deployment...