summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2017-10-13 15:46:53 +0200
committerLinus Färnstrand <linus@mullvad.net>2017-10-13 18:27:04 +0200
commit81b6013ca30b06efa6b087c868aa60f47926396c (patch)
tree9044565a820760eab19c96e28cdb9d708074dd0b
parent3481d773bf33e5f668796b0735428d6e33279d8a (diff)
downloadmullvadvpn-81b6013ca30b06efa6b087c868aa60f47926396c.tar.xz
mullvadvpn-81b6013ca30b06efa6b087c868aa60f47926396c.zip
Remove --all argument in CI scripts
-rw-r--r--.travis.yml4
-rw-r--r--appveyor.yml4
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index af5254cff2..2018417265 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,8 +13,8 @@ before_script:
- env
script:
- - cargo build --all --verbose
- - cargo test --all --verbose
+ - cargo build --verbose
+ - cargo test --verbose
# Format only on nightly, since that is where rustfmt-nightly compiles
- if [ "${TRAVIS_RUST_VERSION}" = "nightly" ] && [ "${TRAVIS_OS_NAME}" = "linux" ]; then
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
diff --git a/appveyor.yml b/appveyor.yml
index a7668d4c00..7161c2a028 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -43,8 +43,8 @@ install:
# This is the "test phase", tweak it as you see fit
test_script:
- - cargo build --all --target %TARGET%
- - cargo test --all --target %TARGET%
+ - cargo build --target %TARGET%
+ - cargo test --target %TARGET%
# Cache build binaries for faster builds next time
cache: