31 lines
597 B
YAML
31 lines
597 B
YAML
|
language: rust
|
||
|
sudo: false
|
||
|
|
||
|
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 bench -- --features criterion
|
||
|
# Criterion may drop support for 1.36.0 in the future. If it does, replace the above line with this:
|
||
|
# - travis-cargo --skip 1.36.0 bench -- --features criterion
|
||
|
- travis-cargo doc -- --no-deps
|
||
|
|
||
|
after_success:
|
||
|
- travis-cargo --only nightly doc-upload
|
||
|
env:
|
||
|
global:
|
||
|
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
|
||
|
|
||
|
notifications:
|
||
|
email: false
|