aeron-rs/.travis.yml

30 lines
416 B
YAML
Raw Normal View History

2019-09-19 22:33:59 -04:00
language: rust
rust:
- stable
os:
- linux
- osx
- windows
cache:
- cargo
before_script:
- rustup update
- rustup component add clippy
- rustup component add rustfmt
2019-09-19 22:33:59 -04:00
script:
- cd aeron_driver-sys
- cargo test
- cargo test --release
2019-09-21 15:50:07 -04:00
- cargo test --features "static"
2019-09-19 22:33:59 -04:00
2019-10-07 19:26:33 -04:00
- cd ../aeron-rs
2019-09-19 22:33:59 -04:00
- cargo test
- cargo test --release
2019-10-07 19:26:33 -04:00
- cd ..
2019-09-19 22:33:59 -04:00
- cargo clippy --all
- cargo fmt --all -- --check