summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 7dfac5c1ba063b468f17fc81763b3deb34716cb8 (plain)
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
28
# $File: .travis.yml,v 1.8 2016/06/28 06:34:34 kim Exp $

language: c

os:
 - linux
 - osx

compiler:
 - gcc
 - clang

before_install:
 - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq; fi
 - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install -qq automake libtool make python zlib1g-dev; fi

script:
 - autoreconf -f -i
 - ./configure --disable-silent-rules
 - make -j4
 - make -C tests check

notifications:
 email:
  recipients:
   - file-tests@mx.gw.com
  on_success: change
  on_failure: always