-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy path.travis.yml
152 lines (141 loc) · 3.67 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# paste config here
notifications:
slack: veg-igem:rqQd95zjTuZoRNElekQx2CLf
email:
recipients:
on_success: change
on_failure: always
branches:
only:
- master
- develop
dist: xenial
language: cpp
os: linux
compiler:
- gcc
script:
- export OMP_NUM_THREADS=4
- travis_wait 60 eval $envSpecificTest
jobs:
include:
- os: linux
addons:
apt:
sources:
- llvm-toolchain-precise
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-9
- gcc-9
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-9" CC="gcc-9"; fi
- cmake .
- make
env:
- envSpecificTest="export PATH=$PATH:$(pwd); cd; git clone https://gitlab.com/rdvelazquez/testiphy.git; cd testiphy; ./testiphy HYPHYMP"
- os: linux
env:
- envSpecificTest="make test"
addons:
apt:
sources:
- llvm-toolchain-precise
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-9
- gcc-9
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-9" CC="gcc-9"; fi
- cmake .
- make
# ---- Just run the hbl unit tests with gcc-4, 5 and 6 ----
# gcc-4
- os: linux
env:
- envSpecificTest="bash ./run_unit_tests.sh"
addons:
apt:
sources:
- llvm-toolchain-precise
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-4.9
- gcc-4.9
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
- cmake .
- make
# gcc-5
- os: linux
env:
- envSpecificTest="bash ./run_unit_tests.sh"
addons:
apt:
sources:
- llvm-toolchain-precise
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-5
- gcc-5
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi
- cmake .
- make
# gcc-6
- os: linux
env:
- envSpecificTest="bash ./run_unit_tests.sh"
addons:
apt:
sources:
- llvm-toolchain-precise
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-6
- gcc-6
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi
- cmake .
- make
# gcc-7
- os: linux
env:
- envSpecificTest="bash ./run_unit_tests.sh"
addons:
apt:
sources:
- llvm-toolchain-precise
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-7
- gcc-7
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-7" CC="gcc-7"; fi
- cmake .
- make
# gcc-8
- os: linux
env:
- envSpecificTest="bash ./run_unit_tests.sh"
addons:
apt:
sources:
- llvm-toolchain-precise
- ubuntu-toolchain-r-test
- george-edison55-precise-backports
packages:
- g++-8
- gcc-8
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi
- cmake .
- make