mirror of
https://github.com/bspeice/aeron-rs
synced 2024-11-13 19:48:09 -05:00
Bradlee Speice
5527495b09
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"
28 lines
396 B
YAML
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
|