modified: src1/input.c
[GalaxyCodeBases.git] / c_cpp / lib / htslib / .travis.yml
blob579f1ca88e259e7571824000cc6eaa8f3726a413
1 # Control file for continuous integration testing at http://travis-ci.org/
3 language: c
4 compiler:
5   - clang
6   - gcc
8 os:
9   - linux
10   - osx
12 env:
13   - USE_CONFIG=no
14   - USE_CONFIG=yes
16 # For linux systems
17 addons:
18   apt:
19     packages:
20     - liblzma-dev
21     - libbz2-dev
23 # For MacOSX systems
24 before_install:
25   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update    ; fi
26   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install xz; fi
28 script:
29   - if test "$USE_CONFIG" = "yes" ; then autoreconf && ./configure ; fi && make -e && make test