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 e36700881c Switch rustup to minimal mode
Should speed up the build especially on Windows
2019-10-16 18:33:00 -04:00

37 lines
511 B
YAML

language: rust
rust:
- stable
os:
- linux
- osx
- windows
cache:
- cargo
before_script:
- rustup set profile minimal
- rustup update
- rustup component add clippy
- rustup component add rustfmt
script:
- cargo test --no-run
- cargo test
- cargo test --release --no-run
- cargo test --release
- cd aeron_driver-sys/
- cargo test --features "static"
- cd ..
- cargo clippy --all
- cargo fmt --all -- --check
branches:
only:
- master
- staging
- trying