diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2019-04-16 00:48:29 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2019-04-16 00:48:29 +0000 |
commit | 1ae2c99806d3f8fad84202fc3c6346f42247ea26 (patch) | |
tree | 948f8b38815eb89c7dac215b9b51d4b54c176ef9 | |
parent | Try using port_check to make travis happy (diff) | |
download | miniserve-1ae2c99806d3f8fad84202fc3c6346f42247ea26.tar.gz miniserve-1ae2c99806d3f8fad84202fc3c6346f42247ea26.zip |
Only run tests on Linux
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 68a3db1..7dbc492 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,7 +51,7 @@ install: script: # If this is a normal, non-deployment build... - if [[ -z $TARGET ]]; then cargo build --verbose && RUST_BACKTRACE=1 cargo test; fi - - if [[ -n $TARGET ]]; then cargo build --verbose --release --target $TARGET && RUST_BACKTRACE=1 cargo test; fi + - if [[ -n $TARGET ]]; then cargo build --verbose --release --target $TARGET; fi before_deploy: # If this is a binary deployment... |