File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -73,13 +73,15 @@ matrix:
73
73
74
74
75
75
script :
76
- - cargo build
77
76
- |
78
77
if [ $TRAVIS_RUST_VERSION == nightly ]; then
79
- cargo test -p rayon &&
78
+ cargo build --features range128 &&
79
+ cargo test -p rayon --features range128 &&
80
80
cargo test -p rayon-core &&
81
81
cargo test -p rayon-demo &&
82
82
./ci/highlander.sh
83
+ else
84
+ cargo build
83
85
fi
84
86
- |
85
87
if [ -n "$RUSTFLAGS" ]; then
Original file line number Diff line number Diff line change @@ -51,11 +51,13 @@ matrix:
51
51
build : false
52
52
53
53
test_script :
54
- - cargo build
55
54
- if [%CHANNEL%]==[nightly] (
56
- cargo test -p rayon &&
55
+ cargo build --features range128 &&
56
+ cargo test -p rayon --features range128 &&
57
57
cargo test -p rayon-core &&
58
58
cargo test -p rayon-demo
59
+ ) else (
60
+ cargo build
59
61
)
60
62
- if not "%RUSTFLAGS%"=="%^RUSTFLAGS%" (
61
63
cargo clean &&
You can’t perform that action at this time.
0 commit comments