imag/.travis.yml

40 lines
600 B
YAML
Raw Normal View History

2015-12-29 13:51:26 +00:00
sudo: false
os:
- linux
dist:
- trusty
2015-12-29 13:51:26 +00:00
language: rust
rust:
2018-01-03 15:56:56 +00:00
- 1.22.1
2018-01-03 15:57:06 +00:00
- 1.23.0
- stable
cache:
cargo: true
addons:
apt:
packages:
- libdbus-1-dev
- pkg-config
2015-12-29 13:51:26 +00:00
script:
- |
bash ./scripts/find-dead-symlinks || exit 1
bash ./scripts/license-headers-updated || exit 1
cargo build --all --all-features -j 1 || exit 1
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:
email:
on_success: never
irc:
channels:
2017-04-21 18:34:14 +00:00
- chat.freenode.net#imag
template:
2017-04-21 18:34:14 +00:00
- "%{repository_name} (%{branch} @ %{commit} by %{author}): %{result}"