aeron-rs/.travis.yml

36 lines
480 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:
2019-10-07 22:17:14 -04:00
- cargo test --no-run
2019-09-19 22:33:59 -04:00
- cargo test
2019-10-07 22:17:14 -04:00
- cargo test --release --no-run
2019-09-19 22:33:59 -04:00
- cargo test --release
2019-10-07 22:17:14 -04:00
- cd aeron_driver-sys/
- cargo test --features "static"
2019-10-07 19:26:33 -04:00
- cd ..
2019-09-19 22:33:59 -04:00
- cargo clippy --all
- cargo fmt --all -- --check
2019-10-07 22:57:27 -04:00
branches:
only:
- master
- staging
- trying