mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
d4bb606834
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.
26 lines
353 B
YAML
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
|