notmuch/.travis.yml
Vladimir Panteleev d4bb606834 .travis.yml: Switch to "sudo: false" for faster builds
Builds not requiring sudo access run in a container, which will have
better performance and less overhead on the Travis infrastructure.

Use the apt addon to install dependencies instead of explicit apt-get
commands.
2017-08-30 07:26:49 -03:00

26 lines
353 B
YAML

language: c
dist: trusty
sudo: false
addons:
apt:
packages:
- dtach
- libxapian-dev
- libgmime-2.6-dev
- libtalloc-dev
- python-sphinx
- gdb
- gpgsm
script:
- ./configure
- make download-test-databases
- make test
notifications:
irc:
channels:
- "chat.freenode.net#notmuch"
on_success: change