forked from PacificBiosciences/FALCON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
28 lines (26 loc) · 869 Bytes
/
.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
# Build matrix / environment variable are explained on:
# http://about.travis-ci.org/docs/user/build-configuration/
# This file can be validated on:
# http://lint.travis-ci.org/
#before_install: sudo apt-get install -y cmake
# cmake is pre-installed in Travis for both linux and osx
#before_install:
# - sudo apt-get update -qq
# - sudo apt-get install -qq valgrind
#sudo: required
os:
- linux
#language: python # This seems to cause virtualenv, which we do not want. We prefer a --user install.
# But to speed-up start-up,
language: c
compiler:
- clang # hmm. distutils uses 'gcc' anyway
# - gcc
script: ./travis.sh
#env:
# matrix:
# - SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
# - SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
notifications:
email: false
sudo: false