2018-11-16 13:50:08 +01:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
2018-11-17 19:05:28 +01:00
|
|
|
|
2016-12-09 20:23:42 +01:00
|
|
|
language: rust
|
|
|
|
|
2018-11-17 19:05:28 +01:00
|
|
|
before_script:
|
2018-12-07 01:33:36 -08:00
|
|
|
- rustup component add rustfmt
|
2018-11-17 19:05:28 +01:00
|
|
|
|
2016-12-09 20:23:42 +01:00
|
|
|
rust:
|
|
|
|
- stable
|
2017-04-16 12:58:29 +02:00
|
|
|
|
|
|
|
script:
|
2018-11-17 19:05:28 +01:00
|
|
|
- cargo fmt --all -- --check
|
2017-04-16 12:58:29 +02:00
|
|
|
- cargo build --manifest-path ash/Cargo.toml
|
|
|
|
- cargo build --manifest-path examples/Cargo.toml
|
2018-08-20 07:30:59 +02:00
|
|
|
- cargo build --manifest-path generator/Cargo.toml
|
2018-12-09 09:11:19 +01:00
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
# This is where pull requests from "bors r+" are built.
|
|
|
|
- staging
|
|
|
|
# This is where pull requests from "bors try" are built.
|
|
|
|
- trying
|
|
|
|
# Uncomment this to enable building pull requests.
|
|
|
|
- master
|
|
|
|
|