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:
|
2017-12-02 10:02:19 +00:00
|
|
|
- 1.21.0
|
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
|
|
|
|
- beta
|
|
|
|
- nightly
|
|
|
|
|
2017-02-04 11:32:06 +00:00
|
|
|
matrix:
|
2017-06-21 07:55:36 +00:00
|
|
|
allow_failures:
|
|
|
|
- rust: nightly
|
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:
|
2017-11-18 11:26:57 +00:00
|
|
|
- cargo build --all --all-features --verbose -j 1
|
|
|
|
- cargo test --all --all-features --verbose -j 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
|
|
|
|