Skip to content

Commit

Permalink
only test futures on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Sep 15, 2017
1 parent cd48e43 commit 7030282
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ script:
fi
- |
if [ -n "$RUSTFLAGS" ]; then
cargo build -p rayon-futures &&
cargo test -p rayon-futures
cargo build -p rayon-futures
if [ $TRAVIS_RUST_VERSION == nightly ]; then
cargo test -p rayon-futures
fi
fi
8 changes: 5 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ test_script:
cargo test -p rayon-core &&
cargo test -p rayon-demo
)
- if not [%RUSTFLAGS%]==[%^RUSTFLAGS%] (
cargo build -p rayon-futures &&
cargo test -p rayon-futures
- if not "%RUSTFLAGS%"=="%^RUSTFLAGS%" (
cargo build -p rayon-futures
if [%CHANNEL%]==[nightly] (
cargo test -p rayon-futures
)
)

0 comments on commit 7030282

Please sign in to comment.