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
|
|
|
|
2017-06-21 07:55:36 +00:00
|
|
|
rust:
|
2018-01-03 15:56:56 +00:00
|
|
|
- 1.22.1
|
2018-01-03 15:57:06 +00:00
|
|
|
- 1.23.0
|
2017-06-21 07:55:36 +00:00
|
|
|
- stable
|
2017-02-04 11:32:06 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
cargo: true
|
|
|
|
|
2017-12-22 14:03:17 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- libdbus-1-dev
|
|
|
|
- pkg-config
|
|
|
|
|
2015-12-29 13:51:26 +00:00
|
|
|
script:
|
2018-01-15 17:51:41 +00:00
|
|
|
- |
|
2018-03-22 13:29:31 +00:00
|
|
|
bash ./scripts/find-dead-symlinks || exit 1
|
2018-02-07 02:11:15 +00:00
|
|
|
bash ./scripts/license-headers-updated || exit 1
|
2018-03-23 20:33:43 +00:00
|
|
|
cargo build --all --all-features -j 1 || exit 1
|
2018-01-15 17:51:41 +00:00
|
|
|
cargo test --all --all-features -j 1 || exit 1
|
2016-01-16 19:33:20 +00:00
|
|
|
|
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
|
|
|
|