1
0
mirror of https://github.com/bspeice/aeron-rs synced 2024-09-19 10:11:34 -04:00
aeron-rs/.travis.yml
Bradlee Speice b1493fc0fd Fix the DLL path on Windows
Static builds aren't working missing some symbols on Windows
2019-09-21 14:02:11 -04:00

28 lines
397 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