1language: c
2
3dist: bionic
4
5addons:
6  apt:
7    sources:
8    - sourceline: 'ppa:xapian-backports/ppa'
9    packages:
10    - dtach
11    - libxapian-dev
12    - libgmime-3.0-dev
13    - libtalloc-dev
14    - python3-sphinx
15    - python3-cffi
16    - python3-pytest
17    - python3-setuptools
18    - libpython3-all-dev
19    - gpgsm
20
21script:
22  - ./configure
23  - make test
24
25notifications:
26  irc:
27    channels:
28      - "irc.libera.chat#notmuch"
29    on_success: change
30