mirror of
https://github.com/bspeice/aeron-rs
synced 2024-11-09 09:38:11 -05:00
e36700881c
Should speed up the build especially on Windows
37 lines
511 B
YAML
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
|
|
|