2015-12-29 13:51:26 +00:00
|
|
|
sudo: false
|
2017-02-04 11:32:06 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
|
|
|
|
dist:
|
|
|
|
- trusty
|
|
|
|
|
2015-12-29 13:51:26 +00:00
|
|
|
language: rust
|
2017-02-04 11:32:06 +00:00
|
|
|
|
2018-04-11 22:22:50 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2018-04-11 23:11:08 +00:00
|
|
|
- language: nix
|
|
|
|
script:
|
|
|
|
- bash ./scripts/find-dead-symlinks
|
|
|
|
- bash ./scripts/license-headers-updated
|
|
|
|
- bash ./scripts/branch-contains-no-tmp-commits
|
2018-04-11 16:14:27 +00:00
|
|
|
- bash ./scripts/version-updated
|
2018-04-11 22:22:50 +00:00
|
|
|
- language: rust
|
2018-05-11 12:52:06 +00:00
|
|
|
rust: 1.24.0
|
2018-04-11 22:22:50 +00:00
|
|
|
cache:
|
|
|
|
cargo: true
|
|
|
|
script:
|
|
|
|
- cargo build --all --all-features -j 1 || exit 1
|
|
|
|
- cargo test --all --all-features -j 1 || exit 1
|
|
|
|
- language: rust
|
2018-05-11 12:52:06 +00:00
|
|
|
rust: 1.25.0
|
2018-04-11 22:22:50 +00:00
|
|
|
cache:
|
|
|
|
cargo: true
|
|
|
|
script:
|
|
|
|
- cargo build --all --all-features -j 1 || exit 1
|
|
|
|
- cargo test --all --all-features -j 1 || exit 1
|
|
|
|
- language: rust
|
|
|
|
rust: stable
|
|
|
|
cache:
|
|
|
|
cargo: true
|
|
|
|
script:
|
|
|
|
- cargo build --all --all-features -j 1 || exit 1
|
|
|
|
- cargo test --all --all-features -j 1 || exit 1
|
2017-02-04 11:32:06 +00:00
|
|
|
|
|
|
|
|
2017-12-22 14:03:17 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- libdbus-1-dev
|
|
|
|
- pkg-config
|
|
|
|
|
2015-12-29 13:51:26 +00:00
|
|
|
notifications:
|
2016-08-22 10:44:15 +00:00
|
|
|
email:
|
|
|
|
on_success: never
|
|
|
|
irc:
|
|
|
|
channels:
|
2017-04-21 18:34:14 +00:00
|
|
|
- chat.freenode.net#imag
|
2016-08-22 10:44:15 +00:00
|
|
|
template:
|
2017-04-21 18:34:14 +00:00
|
|
|
- "%{repository_name} (%{branch} @ %{commit} by %{author}): %{result}"
|
2017-02-04 11:32:06 +00:00
|
|
|
|