summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorErik Larkö <erik@mullvad.net>2017-02-23 10:34:19 +0800
committerErik Larkö <erik@mullvad.net>2017-02-23 10:34:19 +0800
commit15b2657dfa7e6d82b82d97b68e5a89410dd38d48 (patch)
tree1e2db6dfa6d28ad0c2e0d21f481263411b09ac9d
parent9e45a7de25f01975bd5a5baf63f35b35421ab619 (diff)
downloadmullvadvpn-15b2657dfa7e6d82b82d97b68e5a89410dd38d48.tar.xz
mullvadvpn-15b2657dfa7e6d82b82d97b68e5a89410dd38d48.zip
Don't cache rust-zmq
-rw-r--r--.travis.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index fea5d88f36..f78ed83ec7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,15 +20,16 @@ before_script:
- env
script:
+ - cargo build --verbose
+ - cargo test --all --verbose
+ - find . -iname "*.rs" -not -path "*/target/*" -print0 | xargs -0 -n1 rustfmt --write-mode=diff
+
+before_cache:
## zmq-sys caches the location of `libzmq`, if that location ever changes e.g.
## if the version changes we will get into trouble. This rm will make us
## rebuild it every time instead
- rm -rf target/debug/build/zmq*
- - cargo build --verbose
- - cargo test --all --verbose
- - find . -iname "*.rs" -not -path "*/target/*" -print0 | xargs -0 -n1 rustfmt --write-mode=diff
-
notifications:
email:
on_success: never