num-traits/.travis.yml

32 lines
602 B
YAML
Raw Normal View History

2014-12-23 17:50:53 +00:00
language: rust
2015-05-19 16:22:06 +00:00
rust:
- 1.15.0
2015-05-19 16:22:06 +00:00
- beta
- nightly
2017-12-01 00:15:45 +00:00
matrix:
include:
- rust: 1.8.0
before_script:
# libc 0.2.34 started using #[deprecated]
- cargo generate-lockfile
- cargo update --package libc --precise 0.2.33
2015-05-19 16:22:06 +00:00
sudo: false
2014-09-16 17:35:35 +00:00
script:
- cargo build --verbose
- ./ci/test_full.sh
2014-12-23 17:50:53 +00:00
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
2015-05-19 16:22:06 +00:00
[ $TRAVIS_RUST_VERSION = nightly ] &&
ssh-agent ./ci/deploy.sh
2015-01-02 06:09:50 +00:00
notifications:
email:
on_success: never
2017-07-09 05:28:49 +00:00
branches:
only:
- master
- next
- staging
- trying