summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 260264ddd413e152e6750a29592c6e53c117b7b7 (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.7 2016/04/26 16:24:43 glen 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