]> granicus.if.org Git - file/blob - .travis.yml
Fix documentation in comment (Christoph Biedl)
[file] / .travis.yml
1 # $File: .travis.yml,v 1.7 2016/04/26 16:24:43 glen Exp $
2
3 language: c
4
5 os:
6  - linux
7  - osx
8
9 compiler:
10  - gcc
11  - clang
12
13 before_install:
14  - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq; fi
15  - if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install -qq automake libtool make python zlib1g-dev; fi
16
17 script:
18  - autoreconf -f -i
19  - ./configure --disable-silent-rules
20  - make -j4
21  - make -C tests check
22
23 notifications:
24  email:
25   recipients:
26    - file-tests@mx.gw.com
27   on_success: change
28   on_failure: always