Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ matrix:
include:
- rust: 1.22.0
env: DESCRIPTION="pinned stable Rust release"
os:
- linux
- osx
script:
# Differs from standard script: rand_pcg features
- cargo test --lib --no-default-features
Expand All @@ -77,6 +80,9 @@ matrix:
- cargo test --manifest-path rand_jitter/Cargo.toml
- cargo test --manifest-path rand_os/Cargo.toml

- rust: stable
env: DESCRIPTION="stable Rust release, linux"

- rust: stable
env: DESCRIPTION="stable Rust release, macOS, iOS (cross-compile only)"
os: osx
Expand Down Expand Up @@ -104,6 +110,9 @@ matrix:
env: DESCRIPTION="beta Rust release"

- rust: nightly
os:
- linux
- osx
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could cause a problem: it does a doc-upload at the end. Perhaps you can prefix that:

test "$TRAVIS_OS_NAME" = "linux" && travis-cargo --only nightly doc-upload

env: DESCRIPTION="nightly features, benchmarks, documentation"
install:
- cargo --list | egrep "^\s*deadlinks$" -q || cargo install cargo-deadlinks
Expand Down