forked from OpenMS/OpenMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
69 lines (65 loc) · 2.21 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
sudo: false
language: cpp
os:
- linux
cache: apt
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- g++-4.8
- libboost-chrono1.55-dev
- libboost-date-time1.55-dev
- libboost-filesystem1.55-dev
- libboost-iostreams1.55-dev
- libboost-math1.55-dev
- libboost-python1.55-dev
- libboost-regex1.55-dev
- libboost-serialization1.55-dev
- libboost-system1.55-dev
- libboost-thread1.55-dev
- libxerces-c3.1
- libxerces-c-dev
- libicu-dev
- qt4-dev-tools
- libqt4-dev
- libqt4-core
- libqt4-gui
- libsvm-dev
- libsvm3
- glpk
- subversion
- doxygen
- graphviz
- libpcre3-dev
before_script:
./tools/travis/cibuild.before.sh
script:
./tools/travis/cibuild.sh
#second we exclude those that are redundant, don't make sense or take too long
matrix:
include:
- env: ENABLE_STYLE_TESTING=ON WITH_GUI=ON
os: linux
compiler: gcc
## gcc tests class and TOPP tests (if we run into a time limit, we can split it)
## PP Wavelet is turned off due to unstable behavior ...
#
- env: ENABLE_STYLE_TESTING=OFF ENABLE_TOPP_TESTING=ON ENABLE_CLASS_TESTING=ON WITH_GUI=ON DISABLE_WAVELET2DTEST=ON ADDRESS_SANITIZER=Off BUILD_TYPE=Release
os: linux
compiler: gcc
## clang tests class and TOPP tests: without gui and with address sanitizer (needs debug build)
- env: ENABLE_STYLE_TESTING=OFF WITH_GUI=OFF ENABLE_TOPP_TESTING=ON ENABLE_CLASS_TESTING=ON DISABLE_WAVELET2DTEST=ON ADDRESS_SANITIZER=On BUILD_TYPE=Debug
os: linux
compiler: clang
## clang tests class and TOPP tests: without gui and without address sanitizer
- env: ENABLE_STYLE_TESTING=OFF WITH_GUI=ON ENABLE_TOPP_TESTING=ON ENABLE_CLASS_TESTING=ON DISABLE_WAVELET2DTEST=ON ADDRESS_SANITIZER=Off BUILD_TYPE=Release
os: linux
compiler: clang
### OS X tests
# - env: ENABLE_STYLE_TESTING=OFF WITH_GUI=OFF ENABLE_TOPP_TESTING=ON ENABLE_CLASS_TESTING=OFF DISABLE_WAVELET2DTEST=OFF ADDRESS_SANITIZER=Off BUILD_TYPE=Release
# os: osx
# compiler: clang
#