gecko-dev/third_party/rust/byteorder/.travis.yml

23 строки
624 B
YAML

language: rust
rust:
- 1.12.0
- stable
- beta
- nightly
script:
- cargo build --verbose
- cargo doc
- cargo test --verbose
- cargo test --verbose --no-default-features --lib
- if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then
cargo test --verbose --features i128;
cargo test --verbose --no-default-features --features i128 --lib;
cargo bench --verbose --no-run;
cargo bench --verbose --no-run --no-default-features;
cargo bench --verbose --no-run --features i128;
cargo bench --verbose --no-run --no-default-features --features i128;
fi
branches:
only:
- master