summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c022cb416c593f6dd74c0e0a90cfa350df251d22 (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)