zvault/.travis.yml

27 lines
463 B
YAML
Raw Normal View History

2017-07-30 18:59:23 +00:00
language: rust
dist: trusty
addons:
apt:
packages:
- libssl-dev
2017-07-30 19:09:05 +00:00
- libsodium18
- libsodium-dev
2017-07-30 18:59:23 +00:00
cache: cargo
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
script:
- cargo clean
- cargo build
- cargo test
after_success: |
if [[ "$TRAVIS_RUST_VERSION" == stable ]]; then
cargo install cargo-tarpaulin
cargo tarpaulin --ciserver travis-ci --coveralls $TRAVIS_JOB_ID
fi