mirror of
https://github.com/bspeice/aeron-rs
synced 2024-11-13 19:48:09 -05:00
36 lines
480 B
YAML
36 lines
480 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:
|
|
- 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
|
|
|