-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
172 lines (146 loc) · 3.14 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
language: cpp
git:
submodules: false
env:
global:
- HUNTER_ROOT=${HOME}/hunter
- GH_REPO_REF=github.com/ithron/CortidQCT.git
- GH_REPO_NAME=CortidQCT
- GENERATE_DOCS=no
- Matlab_ROOT_DIR=${HOME}/MCR/v910
- BUILD_MEX=OFF
- DEPLOY=false
cache:
directories:
- ${HUNTER_ROOT}
#################
# BUILD MATRIX
#
matrix:
include:
##########
# Linux
##########
# GCC-7
# Debug
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
env:
- COMPILER=gcc GCC_VERSION=7
- BUILD_TYPE=Debug
# Release
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
env:
- COMPILER=gcc GCC_VERSION=7
- BUILD_TYPE=Release
- DEPLOY=true
##########
# GCC-8
# Debug
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-8
env:
- COMPILER=gcc GCC_VERSION=8
- BUILD_TYPE=Debug
# Release
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-8
env:
- COMPILER=gcc GCC_VERSION=8
- BUILD_TYPE=Release
##############
# Clang 6.0
# Debug
- os: linux
env:
- COMPILER=clang CLANG_VERSION=6.0.1
- BUILD_TYPE=Debug
# Relase
- os: linux
addons:
apt:
packages:
- doxygen doxygen-latex graphviz
env:
- COMPILER=clang CLANG_VERSION=6.0.1
- BUILD_TYPE=Release
- GENERATE_DOCS=yes
##############
# Clang 7.0
# Debug
- os: linux
env:
- COMPILER=clang CLANG_VERSION=7.0.1
- BUILD_TYPE=Debug
# Relase
- os: linux
addons:
apt:
packages:
- doxygen doxygen-latex graphviz
env:
- COMPILER=clang CLANG_VERSION=7.0.1
- BUILD_TYPE=Release
- GENERATE_DOCS=yes
##########
# macOS
##############
# Xcode 10.0
# Debug
- os: osx
osx_image: xcode10.2
env: BUILD_TYPE=Debug
# Debug
- os: osx
osx_image: xcode10.2
env: BUILD_TYPE=Release
before_install:
- |
if ([ "$TRAVIS_BRANCH" == "master" ] || [ ! -z "$TRAVIS_TAG" ]) &&
[ "$TRAVIS_PULL_REQUEST" == "false" ]; then
./scripts/setup-matlab.sh
export BUILD_MEX=ON
fi
- source scripts/travis-toolchain.sh
- git submodule update --init
script:
- ./scripts/travis-cmake.sh
- ./scripts/travis-build.sh
after_success:
- |
if [ "${GENERATE_DOCS}" = "yes" ]; then
./scripts/generateDocumentationAndDeploy.sh
fi
# before_deploy:
# - ./scripts/generateDocumentationAndDeploy.sh
# deploy:
# provider: releases
# api_key: ${GH_REPO_TOKEN}
# file: "${TRAVIS_BUILD_DIR}/CortidQCT-${TRAVIS_TAG}-x86_64-linux-gnu-ubuntu-18.04.tar.gz"
# skip_cleanup: true
# prerelease: true
# overwrite: true
# all_branches: true
# on:
# condition: $DEPLOY = true