@@ -56,7 +56,9 @@ sudo: false
56
56
# `cargo test --package rand_core --no-default-features`
57
57
# `cargo test --package rand_isaac --features=serde1`
58
58
# `cargo test --package rand_xorshift --features=serde1`
59
- #
59
+ # `cargo test --package rand_chacha`
60
+ # `cargo test --package rand_hc128`
61
+ #
60
62
# TODO: SIMD support on stable releases
61
63
# NOTE: SIMD support is unreliable on nightly; we track the latest release
62
64
matrix :
@@ -72,6 +74,8 @@ matrix:
72
74
- cargo test --package rand_core --no-default-features
73
75
- cargo test --package rand_isaac --features=serde1
74
76
# - cargo test --package rand_xorshift --features=serde1
77
+ - cargo test --package rand_chacha
78
+ - cargo test --package rand_hc128
75
79
76
80
- rust : stable
77
81
env : DESCRIPTION="stable Rust release, macOS, iOS (cross-compile only)"
@@ -87,6 +91,8 @@ matrix:
87
91
- cargo test --package rand_core --no-default-features
88
92
- cargo test --package rand_isaac --features=serde1
89
93
- cargo test --package rand_xorshift --features=serde1
94
+ - cargo test --package rand_chacha
95
+ - cargo test --package rand_hc128
90
96
- cargo build --target=aarch64-apple-ios
91
97
92
98
- rust : beta
@@ -101,6 +107,8 @@ matrix:
101
107
- cargo test --package rand_core --no-default-features
102
108
- cargo test --package rand_isaac --features=serde1
103
109
- cargo test --package rand_xorshift --features=serde1
110
+ - cargo test --package rand_chacha
111
+ - cargo test --package rand_hc128
104
112
105
113
- rust : nightly
106
114
env : DESCRIPTION="nightly features, benchmarks, documentation"
@@ -118,6 +126,8 @@ matrix:
118
126
- cargo test --package rand_core --no-default-features --features=alloc
119
127
- cargo test --package rand_isaac --features=serde1
120
128
# - cargo test --package rand_xorshift --features=serde1
129
+ - cargo test --package rand_chacha
130
+ - cargo test --package rand_hc128
121
131
# remove cached documentation, otherwise files from previous PRs can get included
122
132
- rm -rf target/doc
123
133
- cargo doc --no-deps --all --all-features
0 commit comments