summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 4b58ca3d58f1ea03bfde3a3b28f3ba475d5298d1 (plain) (blame)
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
26
27
language: c

compiler:
  - gcc
  - clang

before_install:
  - sudo apt-get -qq update

install:
  - sudo apt-get install -qq autopoint
  - sudo apt-get install -qq bc
  - sudo apt-get install -qq gtk-doc-tools

before_script:
  - ./autogen.sh

script:
  - ./configure
    && make
    && ( make check || echo "non-root checks failed" )
    && make dist

after_script:
  - test -d tests/diff
    && echo "cat test diffs:"
    && find tests/diff -type f | xargs -r cat