summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: dbba64b91b2234f5a75e9d371625bac95842f065 (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
language: c
dist: trusty
addons:
  apt:
    packages:
      - automake
      - autotools-dev
      - libcap-dev
script:
  - env NOCONFIGURE=1 ./autogen.sh
  - mkdir build
  - cd build && ../configure
  - make -j 2
  - make check

notifications:
  # This is Colin's instance of Homu, in the future
  # we'll move this to a production cluster.
  webhooks: http://escher.verbum.org:54856/travis
  email: false

branches:
  only:
    - auto