Skip to content

Commit c31d24c

Browse files
author
Paul Kernfeld
committed
Build with range128, only on nightly
1 parent 214b6c6 commit c31d24c

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,15 @@ matrix:
7373

7474

7575
script:
76-
- cargo build
7776
- |
7877
if [ $TRAVIS_RUST_VERSION == nightly ]; then
79-
cargo test -p rayon &&
78+
cargo build --features range128 &&
79+
cargo test -p rayon --features range128 &&
8080
cargo test -p rayon-core &&
8181
cargo test -p rayon-demo &&
8282
./ci/highlander.sh
83+
else
84+
cargo build
8385
fi
8486
- |
8587
if [ -n "$RUSTFLAGS" ]; then

appveyor.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,13 @@ matrix:
5151
build: false
5252

5353
test_script:
54-
- cargo build
5554
- if [%CHANNEL%]==[nightly] (
56-
cargo test -p rayon &&
55+
cargo build --features range128 &&
56+
cargo test -p rayon --features range128 &&
5757
cargo test -p rayon-core &&
5858
cargo test -p rayon-demo
59+
) else (
60+
cargo build
5961
)
6062
- if not "%RUSTFLAGS%"=="%^RUSTFLAGS%" (
6163
cargo clean &&

0 commit comments

Comments
 (0)