summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 4fe0ad2b0fb8346533160f1a5b15bf3c07f455b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
sudo: false

language: c

compiler:
  - gcc
  - clang

addons:
  apt:
    packages:
      - autopoint
      - xsltproc

script:
 - ./autogen.sh --without-selinux --disable-man
 - grep ENABLE_ config.status
 - make

# vim:et:ts=2:sw=2