diff options
Diffstat (limited to 'third_party/rust/failure/.travis.yml')
-rw-r--r-- | third_party/rust/failure/.travis.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/rust/failure/.travis.yml b/third_party/rust/failure/.travis.yml new file mode 100644 index 0000000000..53c70e9d5d --- /dev/null +++ b/third_party/rust/failure/.travis.yml @@ -0,0 +1,12 @@ +language: rust +rust: + - 1.31.0 + - stable + - beta + - nightly +cache: cargo +script: + - if [ "$TRAVIS_RUST_VERSION" == "1.31.0" ]; then cp Cargo.lock.ci Cargo.lock; fi + - cargo test + - cargo test --features backtrace + - cargo check --no-default-features |