34 lines
811 B
YAML
34 lines
811 B
YAML
language: rust
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- rust: 1.15.0
|
|
- rust: stable
|
|
- rust: stable
|
|
os: osx
|
|
- rust: beta
|
|
- rust: nightly
|
|
|
|
- rust: nightly
|
|
before_script:
|
|
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
|
|
script:
|
|
- cargo doc --no-deps --all-features
|
|
- cargo test --benches
|
|
- cargo test --features nightly
|
|
after_success:
|
|
- travis-cargo --only nightly doc-upload
|
|
|
|
script:
|
|
- cargo test
|
|
- cargo test --manifest-path rand-derive/Cargo.toml
|
|
|
|
env:
|
|
global:
|
|
secure: "BdDntVHSompN+Qxz5Rz45VI4ZqhD72r6aPl166FADlnkIwS6N6FLWdqs51O7G5CpoMXEDvyYrjmRMZe/GYLIG9cmqmn/wUrWPO+PauGiIuG/D2dmfuUNvSTRcIe7UQLXrfP3yyfZPgqsH6pSnNEVopquQKy3KjzqepgriOJtbyY="
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|