aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2019-10-01 00:23:24 +0000
committerSven-Hendrik Haase <svenstaro@gmail.com>2019-10-01 00:23:24 +0000
commit79a7df72a8d10c0c8e035b7ef0008c9e7c2dca2b (patch)
treed6b8cd7598ac0278ef8189005358464fdf9d21e0
parentBump nightly (diff)
downloadminiserve-79a7df72a8d10c0c8e035b7ef0008c9e7c2dca2b.tar.gz
miniserve-79a7df72a8d10c0c8e035b7ef0008c9e7c2dca2b.zip
Don't use verbose for travis and also add --locked
-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...