sudo: false
language: rust
rust:
- 1.19.0 # Oldest supported
- 1.33.0 # Oldest supported with constant expressions
- stable
- beta
- nightly
matrix:
include:
- env: RUSTFMT
rust: 1.19.0
rust: 1.33.0
install:
- rustup component add rustfmt-preview
script:
- cargo fmt -- --check
- env: RUSTFLAGS="-D warnings"
rust: 1.33.0 # `stable`: Locking down for consistent behavior
script:
- cargo check --tests
allow_failures:
- rust: nightly
fast_finish: true
install:
- rustc -Vv
- cargo -V
script:
- rm -rf target/debug/deps/*memoffset* # Avoid rustdoc problems
- cargo test --verbose
cache:
cargo: true