diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index bf73e2f..1b1f513 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,7 @@ matrix: - BIN_NAME=miniserve - PROPER_NAME=miniserve-osx-x86_64 os: osx - - rust: nightly-2019-07-14 + - rust: nightly-2019-09-25 env: - CLIPPY=true @@ -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... |