summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2017-01-31 13:37:17 +0100
committerLinus Färnstrand <linus@mullvad.net>2017-01-31 13:49:16 +0100
commit9f6d174f351e4c115aac2017fa347124bbd5fef6 (patch)
tree4860ad27b24ddb3e0aa67f3b3b48c720b871b8ee
parent8b1b141811833bd5cc186658511ad6998501426c (diff)
downloadmullvadvpn-9f6d174f351e4c115aac2017fa347124bbd5fef6.tar.xz
mullvadvpn-9f6d174f351e4c115aac2017fa347124bbd5fef6.zip
Adapt travis+appveyor to build openvpn plugin
-rw-r--r--.travis.yml5
-rw-r--r--appveyor.yml3
2 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 3a9cd49e98..c3763c550f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,10 @@ script:
- cargo build --verbose
- cargo test --verbose
- cargo fmt -- --write-mode=diff
- - cd talpid_cli/
+ - cd talpid_openvpn_plugin/
+ - cargo test --verbose
+ - cargo fmt -- --write-mode=diff
+ - cd ../talpid_cli/
- cargo test --verbose
- cargo fmt -- --write-mode=diff
diff --git a/appveyor.yml b/appveyor.yml
index 34a8906cce..d3af2daebb 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -45,7 +45,8 @@ test_script:
cargo build --target %TARGET% --release && echo "RELEASE BUILD DONE" &&
cargo test --target %TARGET% && echo "DEBUG TESTING DONE" &&
cargo test --target %TARGET% --release && echo "RELEASE TESTING DONE" &&
- cd talpid_cli/ && cargo test --target %TARGET%
+ cd talpid_openvpn_plugin/ && cargo test --target %TARGET%
+ cd ../talpid_cli/ && cargo test --target %TARGET%
)
# Cache build binaries for faster builds next time