From e6ae0ad1c56c5ce0060be14fb78d721d45564f7e Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Thu, 19 Sep 2019 22:33:59 -0400 Subject: [PATCH] Add Travis build file Should work? --- .travis.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d9aebc9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +language: rust +rust: + - stable + - beta + - nightly +os: + - linux + - osx + - windows + +cache: + - cargo + +script: + - cd aeron_driver-sys + - cargo test + - cargo test --release + - cargo test --features "static" + + - cd .. + - cargo test + - cargo test --release + - cargo fmt --all -- --check + - cargo clippy --all