You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
550 B
37 lines
550 B
language: rust
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcurl4-openssl-dev
|
|
- libelf-dev
|
|
- libdw-dev
|
|
- binutils-dev
|
|
|
|
rust:
|
|
- nightly
|
|
- beta
|
|
- stable
|
|
- 1.36.0
|
|
|
|
before_script:
|
|
- |
|
|
pip install 'travis-cargo<0.2' --user &&
|
|
export PATH=$HOME/.local/bin:$PATH
|
|
|
|
script:
|
|
- travis-cargo build
|
|
- travis-cargo test
|
|
- travis-cargo doc
|
|
|
|
after_success:
|
|
- travis-cargo --only nightly doc-upload
|
|
- travis-cargo --only nightly coveralls --no-sudo --verify
|
|
|
|
env:
|
|
global:
|
|
- TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
|
|
|
|
notifications:
|
|
email: false
|