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

sudo: false

matrix:
  include:
    - os: linux
      compiler: gcc
    - os: linux
      compiler: clang
    - os: osx
      compiler: clang

install:
  - ./bootstrap

script:
  - ./configure
  - make
  - make check || cat */test-suite.log && false
  - make distcheck || cat */test-suite.log && false