diff options
author | boastful-squirrel <boastful.squirrel@gmail.com> | 2019-11-21 22:57:49 +0000 |
---|---|---|
committer | boastful-squirrel <boastful.squirrel@gmail.com> | 2019-11-21 22:57:49 +0000 |
commit | 1bc09afa2945f6eadd74193802abe4d4f4e4fe75 (patch) | |
tree | ee6fb7967925a225489d37979484fc779964400b /.travis.yml | |
parent | Fix html elements order (diff) | |
parent | Merge pull request #217 from svenstaro/dependabot/cargo/port_check-0.1.2 (diff) | |
download | miniserve-1bc09afa2945f6eadd74193802abe4d4f4e4fe75.tar.gz miniserve-1bc09afa2945f6eadd74193802abe4d4f4e4fe75.zip |
Merge branch 'master' into fix-#173
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... |