forked from samtools/htslib
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
41 lines (33 loc) · 1.16 KB
/
.travis.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
# Control file for continuous integration testing at http://travis-ci.org/
language: c
compiler:
- clang
- gcc
os:
- linux
- osx
env:
- USE_CONFIG=no
- USE_CONFIG=yes
matrix:
include:
- compiler: gcc
os: linux
env: USE_CONFIG=yes USE_LIBDEFLATE=yes
- compiler: clang
os: osx
env: USE_CONFIG=yes USE_LIBDEFLATE=yes
# For linux systems
addons:
apt:
packages:
- liblzma-dev
- libbz2-dev
# For MacOSX systems
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" && "$USE_CONFIG" == "no" ]]; then HOMEBREW_NO_AUTO_UPDATE=1 brew install xz || ( brew update && brew install xz ); fi
before_script:
- if test "x$USE_LIBDEFLATE" == "xyes" ; then ( cd "$HOME" && git clone --depth 1 https://github.com/ebiggers/libdeflate.git && cd libdeflate && make -j 2 CFLAGS='-fPIC -O3' libdeflate.a ); fi
script:
- if test "x$USE_LIBDEFLATE" = "xyes" ; then CONFIG_OPTS='CPPFLAGS="-I$HOME/libdeflate" LDFLAGS="-L$HOME/libdeflate" --with-libdeflate' ; else CONFIG_OPTS='--without-libdeflate' ; fi
- if test "$USE_CONFIG" = "yes" ; then autoreconf && eval ./configure $CONFIG_OPTS || { cat config.log ; false ; } ; fi && make -j 2 -e && make test