зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
375 B
YAML
19 строки
375 B
YAML
language: rust
|
|
sudo: false
|
|
matrix:
|
|
include:
|
|
- rust: 1.11.0
|
|
- rust: stable
|
|
- rust: beta
|
|
- rust: nightly
|
|
env:
|
|
- BENCH=1
|
|
branches:
|
|
only:
|
|
- master
|
|
script:
|
|
- |
|
|
cargo build --verbose --features "$FEATURES" &&
|
|
cargo test --verbose --features "$FEATURES" &&
|
|
([ "$BENCH" != 1 ] || cargo bench --verbose --features "$FEATURES")
|