зеркало из https://github.com/mozilla/gecko-dev.git
31 строка
550 B
YAML
31 строка
550 B
YAML
language: rust
|
|
sudo: false
|
|
|
|
# run builds for all the trains (and more)
|
|
rust:
|
|
- stable
|
|
- beta
|
|
- nightly
|
|
|
|
# load travis-cargo
|
|
before_script:
|
|
- |
|
|
pip install 'travis-cargo<0.2' --user &&
|
|
export PATH=$HOME/.local/bin:$PATH
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
# the main build
|
|
script:
|
|
- |
|
|
travis-cargo build &&
|
|
travis-cargo test &&
|
|
travis-cargo bench &&
|
|
travis-cargo doc
|
|
|
|
env:
|
|
global:
|
|
# override the default `--features unstable` used for the nightly branch (optional)
|
|
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
|