summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: f79099e5a514d6a6bb8f536e864ebe395073166d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
sudo: false
os:
  - linux

dist:
  - trusty

language: rust

rust:
  - 1.28.0
  - stable
  - beta
  - nightly

matrix:
  allow_failures:
    - rust: nightly

script:
  - cargo build --all --all-features --verbose -j 1
  - cargo test  --all --all-features --verbose -j 1

cache:
  cargo: true

notifications:
  email:
    on_success: never
  irc:
    channels:
      - chat.freenode.net#imag
    template:
      - "%{repository_name} (%{branch} @ %{commit} by %{author}): %{result}"