forked from samtools/samtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (22 loc) · 678 Bytes
/
.travis.yml
File metadata and controls
28 lines (22 loc) · 678 Bytes
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
# Control file for continuous integration testing at http://travis-ci.org/
os:
- linux
- osx
language: c
compiler:
- clang
- gcc
matrix:
include:
# An unoptimised C99 build, for detecting non-static inline functions
- compiler: gcc
env: CFLAGS="-std=gnu99 -O0"
env:
global:
- HTSDIR=./htslib
before_script:
# Clone samtools/htslib (or another repository, as specified by a Travis CI
# repository $HTSREPO setting) and check out a corresponding branch with the
# same name, if any, or otherwise the default branch.
- .travis/clone ${HTSREPO:-git://github.com/samtools/htslib.git} $HTSDIR $TRAVIS_BRANCH
script: make -e && make -e test