fd/.travis.yml
Matthias Reitinger 6f22957cdc Re-write integration tests in Rust (#67)
* Rewrite integration tests in Rust.
* Improve failure output for integration tests.
* Move TestEnv to separate module.
* Remove old integration tests script.
* Re-add integration test for subdirectory.
2017-10-04 23:19:30 +02:00

39 lines
802 B
YAML

language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
include:
# Nightly channel.
- os: linux
rust: nightly
env: TARGET=i686-unknown-linux-musl
- os: linux
rust: nightly
env: TARGET=x86_64-unknown-linux-musl
# currently disabled
# - os: osx
# rust: nightly
# env: TARGET=x86_64-apple-darwin
# Beta channel.
- os: linux
rust: beta
env: TARGET=x86_64-unknown-linux-musl
- os: linux
rust: beta
env: TARGET=x86_64-unknown-linux-gnu
# Minimum Rust supported channel.
- os: linux
rust: 1.16.0
env: TARGET=x86_64-unknown-linux-gnu
- os: linux
rust: 1.16.0
env: TARGET=x86_64-unknown-linux-musl
notifications:
email:
on_success: never