vpncloud/.travis.yml

39 lines
976 B
YAML
Raw Normal View History

2015-11-23 18:51:10 +00:00
sudo: true
2015-11-23 18:24:34 +00:00
language: rust
rust:
- nightly
- beta
- stable
matrix:
allow_failures:
- rust: nightly
before_script:
2015-11-23 20:53:33 +00:00
- ! 'pip install ''travis-cargo<0.2'' --user &&
export PATH=$HOME/.local/bin:$PATH;
2015-11-23 18:47:06 +00:00
wget https://github.com/jedisct1/libsodium/releases/download/1.0.3/libsodium-1.0.3.tar.gz;
2015-11-23 20:53:33 +00:00
tar xvfz libsodium-1.0.3.tar.gz;
cd libsodium-1.0.3 && ./configure --prefix=/usr && make && sudo make install && cd ..
'
2015-11-23 18:24:34 +00:00
script:
2015-11-23 20:53:33 +00:00
- ! 'travis-cargo build &&
travis-cargo build -- --features "crypto" &&
travis-cargo test -- --features "crypto" &&
travis-cargo bench -- --features "crypto" &&
travis-cargo --only stable doc -- --features "crypto"
'
2015-11-23 18:24:34 +00:00
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
after_success:
2015-11-23 20:53:33 +00:00
- travis-cargo --only stable doc-upload -- --features "crypto"
- travis-cargo coveralls --no-sudo -- --features "crypto"
2015-11-23 18:24:34 +00:00
notifications:
email:
on_success: never
env:
global:
- TRAVIS_CARGO_NIGHTLY_FEATURE=""