2019-09-19 22:33:59 -04:00
|
|
|
language: rust
|
|
|
|
rust:
|
|
|
|
- stable
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
- windows
|
|
|
|
|
|
|
|
cache:
|
|
|
|
- cargo
|
|
|
|
|
2019-09-19 22:47:07 -04:00
|
|
|
before_script:
|
2019-10-16 18:33:00 -04:00
|
|
|
- rustup set profile minimal
|
2019-09-19 22:47:07 -04:00
|
|
|
- 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
|
2019-09-19 22:47:07 -04:00
|
|
|
- cargo fmt --all -- --check
|
2019-10-07 22:57:27 -04:00
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- staging
|
|
|
|
- trying
|
|
|
|
|