summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-12-23 12:58:18 +0100
committerMatthias Beyer <mail@beyermatthias.de>2019-12-23 12:58:18 +0100
commit877cf7b51d2b05251c70e5936f1970004b092672 (patch)
tree21315e1d0c6f2a16ba198b224821dfb458ef8bf9
parent7bc3c564c35aaddd938e8a2e2eb8a51ddb45fbab (diff)
Enable all features on all crates for testing, add missing dependencies
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.travis.yml11
1 files changed, 9 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index b5cf37a..f7fee74 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,11 +9,18 @@ rust:
- stable
- beta
+addons:
+ apt:
+ packages:
+ - pkg-config
+ - cmake
+ - openssl
+
before_script:
- rustup component add clippy
script:
- cargo clippy --all-targets --all-features -- -D warnings
- - cargo build
- - cargo test
+ - cargo build --all-features --all
+ - cargo test --all-features --all