summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: b01fc8cfc2cbc8bfda2a70b900130c1cac6ea2a8 (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
    && make dist

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