1
0
mirror of https://github.com/bspeice/aeron-rs synced 2024-09-16 08:41:28 -04:00
aeron-rs/.travis.yml
Bradlee Speice 5527495b09 Reversion and cleanup
Moving the `aeronmd` example to the sys crate caused issues for static
linking because of the `tempfile` crate.

Revert "Install luuid for Linux"
Revert "Fix some Cargo.toml issues"
Revert "More minor cleanup"
2019-10-03 00:48:53 -04:00

28 lines
396 B
YAML

language: rust
rust:
- stable
os:
- linux
- osx
- windows
cache:
- cargo
before_script:
- rustup update
- rustup component add clippy
- rustup component add rustfmt
script:
- cd aeron_driver-sys
- cargo test
- cargo test --release
- cargo test --features "static"
- cd ..
- cargo test
- cargo test --release
- cargo clippy --all
- cargo fmt --all -- --check