aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: b4c0414dbdcbe2bfe2a3354dee76e0ddca4d53b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: rust
sudo: false
rust:
  - stable
  - beta
  - nightly

addons:
  apt:
    packages:
    - libnotmuch-dev
    - notmuch
    - git

script:
  - cargo build --no-default-features --verbose --all
  # clone notmuch to have mail corpora
  - git clone git://git.notmuchmail.org/git/notmuch /tmp/notmuch
  - cargo test --no-default-features --verbose --all