Skip to content

Commit 33a1e9d

Browse files
committed
Add missing crates to CI configs
1 parent 1f7695a commit 33a1e9d

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.travis.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ sudo: false
5656
# `cargo test --package rand_core --no-default-features`
5757
# `cargo test --package rand_isaac --features=serde1`
5858
# `cargo test --package rand_xorshift --features=serde1`
59-
#
59+
# `cargo test --package rand_chacha`
60+
# `cargo test --package rand_hc128`
61+
#
6062
# TODO: SIMD support on stable releases
6163
# NOTE: SIMD support is unreliable on nightly; we track the latest release
6264
matrix:
@@ -72,6 +74,8 @@ matrix:
7274
- cargo test --package rand_core --no-default-features
7375
- cargo test --package rand_isaac --features=serde1
7476
# - cargo test --package rand_xorshift --features=serde1
77+
- cargo test --package rand_chacha
78+
- cargo test --package rand_hc128
7579

7680
- rust: stable
7781
env: DESCRIPTION="stable Rust release, macOS, iOS (cross-compile only)"
@@ -87,6 +91,8 @@ matrix:
8791
- cargo test --package rand_core --no-default-features
8892
- cargo test --package rand_isaac --features=serde1
8993
- cargo test --package rand_xorshift --features=serde1
94+
- cargo test --package rand_chacha
95+
- cargo test --package rand_hc128
9096
- cargo build --target=aarch64-apple-ios
9197

9298
- rust: beta
@@ -101,6 +107,8 @@ matrix:
101107
- cargo test --package rand_core --no-default-features
102108
- cargo test --package rand_isaac --features=serde1
103109
- cargo test --package rand_xorshift --features=serde1
110+
- cargo test --package rand_chacha
111+
- cargo test --package rand_hc128
104112

105113
- rust: nightly
106114
env: DESCRIPTION="nightly features, benchmarks, documentation"
@@ -118,6 +126,8 @@ matrix:
118126
- cargo test --package rand_core --no-default-features --features=alloc
119127
- cargo test --package rand_isaac --features=serde1
120128
# - cargo test --package rand_xorshift --features=serde1
129+
- cargo test --package rand_chacha
130+
- cargo test --package rand_hc128
121131
# remove cached documentation, otherwise files from previous PRs can get included
122132
- rm -rf target/doc
123133
- cargo doc --no-deps --all --all-features

appveyor.yml

+2
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@ test_script:
4141
- cargo test --package rand_core --no-default-features --features=alloc
4242
- cargo test --package rand_isaac --features=serde1
4343
- cargo test --package rand_xorshift --features=serde1
44+
- cargo test --package rand_chacha
45+
- cargo test --package rand_hc128

0 commit comments

Comments
 (0)