Skip to content

Commit

Permalink
Add missing crates to CI configs
Browse files Browse the repository at this point in the history
  • Loading branch information
vks committed Sep 25, 2018
1 parent 1f7695a commit 33a1e9d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .travis.yml
Expand Up @@ -56,7 +56,9 @@ sudo: false
# `cargo test --package rand_core --no-default-features`
# `cargo test --package rand_isaac --features=serde1`
# `cargo test --package rand_xorshift --features=serde1`
#
# `cargo test --package rand_chacha`
# `cargo test --package rand_hc128`
#
# TODO: SIMD support on stable releases
# NOTE: SIMD support is unreliable on nightly; we track the latest release
matrix:
Expand All @@ -72,6 +74,8 @@ matrix:
- cargo test --package rand_core --no-default-features
- cargo test --package rand_isaac --features=serde1
# - cargo test --package rand_xorshift --features=serde1
- cargo test --package rand_chacha
- cargo test --package rand_hc128

- rust: stable
env: DESCRIPTION="stable Rust release, macOS, iOS (cross-compile only)"
Expand All @@ -87,6 +91,8 @@ matrix:
- cargo test --package rand_core --no-default-features
- cargo test --package rand_isaac --features=serde1
- cargo test --package rand_xorshift --features=serde1
- cargo test --package rand_chacha
- cargo test --package rand_hc128
- cargo build --target=aarch64-apple-ios

- rust: beta
Expand All @@ -101,6 +107,8 @@ matrix:
- cargo test --package rand_core --no-default-features
- cargo test --package rand_isaac --features=serde1
- cargo test --package rand_xorshift --features=serde1
- cargo test --package rand_chacha
- cargo test --package rand_hc128

- rust: nightly
env: DESCRIPTION="nightly features, benchmarks, documentation"
Expand All @@ -118,6 +126,8 @@ matrix:
- cargo test --package rand_core --no-default-features --features=alloc
- cargo test --package rand_isaac --features=serde1
# - cargo test --package rand_xorshift --features=serde1
- cargo test --package rand_chacha
- cargo test --package rand_hc128
# remove cached documentation, otherwise files from previous PRs can get included
- rm -rf target/doc
- cargo doc --no-deps --all --all-features
Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Expand Up @@ -41,3 +41,5 @@ test_script:
- cargo test --package rand_core --no-default-features --features=alloc
- cargo test --package rand_isaac --features=serde1
- cargo test --package rand_xorshift --features=serde1
- cargo test --package rand_chacha
- cargo test --package rand_hc128

0 comments on commit 33a1e9d

Please sign in to comment.