forked from open62541/open62541
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
385 lines (361 loc) · 9.79 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
language: c
sudo: required
env:
global:
# GITAUTH:
- secure: nSunY54Wp5HkQCHHbKwlwpbaKyqRVIu/0EnhaoJSwhM1wqerQV/E5d/2JelO9/tZgbungAO7wk/fjutRMVc7d378RTIPwS8vHpvZfEoGhCFsLoTOlqESzsZFBup2H5t1lpQ23jRHDOxlLdJy2lz5U+zd1YnYgDXqdDFjegsIYdo=
- PYTHON=python2
# For tag builds we do not have the base branch in TRAVIS_BRANCH, therefore store it in BRANCH_FOR_TAG
- BRANCH_FOR_TAG=$(git ls-remote origin | sed -n "\|$TRAVIS_COMMIT\s\+refs/heads/|{s///p}")
dist: trusty
# Make sure we have the git tags. Travis uses shallow checkout where git describe does not work
git:
depth: false
matrix:
fast_finish: true
include:
#
# gcc-4.8 (trusty) full host and cross build with tests:
# doc, cert, cross-mingw32, cross-mingw64, cross-linux32, cross-raspi, linux64,
# amalgamated, shared, multithread, encryption, discovery, json, test-ns0-full, test-ns0-minimal
- os: linux
compiler: gcc-4.8
addons:
apt:
sources:
# see https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
- ubuntu-toolchain-r-test
packages:
- mingw-w64
- gcc-mingw-w64-i686
- gcc-mingw-w64-x86-64
- binutils-mingw-w64-i686
- g++-multilib
- cmake
# doc
- python-sphinx
- graphviz
- texlive-generic-extra
- texlive-fonts-recommended
- texlive-latex-extra
- latexmk
# tests
- check
- libsubunit-dev
- valgrind
env:
- MINGW=true
#
# gcc-8 full host build with tests:
# doc, cert, linux64,
# amalgamated, shared, multithread, encryption, discovery, json, test-ns0-full, test-ns0-minimal
- os: linux
compiler: gcc-8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- gcc-8-multilib
# doc
- python-sphinx
- graphviz
- texlive-generic-extra
- texlive-fonts-recommended
- texlive-latex-extra
- latexmk
# tests
- check
- libsubunit-dev
- valgrind
#
# clang-6 full host build with tests:
# doc, cert, linux64,
# amalgamated, shared, multithread, encryption, discovery, json, test-ns0-full, test-ns0-minimal
- os: linux
compiler: clang-6.0
addons:
apt:
sources:
- llvm-toolchain-trusty-6.0
- ubuntu-toolchain-r-test
packages:
- clang-6.0
- clang-tidy-6.0
# doc
- python-sphinx
- graphviz
- texlive-generic-extra
- texlive-fonts-recommended
- texlive-latex-extra
- latexmk
# tests
- check
- libsubunit-dev
- valgrind
#
# clang-6 python-3 full host build with tests:
# doc, cert, linux64,
# amalgamated, shared, multithread, encryption, discovery, json, test-ns0-full, test-ns0-minimal
- os: linux
compiler: clang-6.0
addons:
apt:
sources:
- llvm-toolchain-trusty-6.0
- ubuntu-toolchain-r-test
packages:
- clang-6.0
- clang-tidy-6.0
# doc
- python3-sphinx
- graphviz
- texlive-generic-extra
- texlive-fonts-recommended
- texlive-latex-extra
- latexmk
# tests
- check
- libsubunit-dev
- valgrind
env:
- PYTHON=python3
#
# tcc full host build:
# doc, cert, linux64,
# amalgamated, shared, multithread, encryption, discovery, json, test-ns0-full, test-ns0-minimal
- os: linux
compiler: tcc
addons:
apt:
packages:
# doc
- python-sphinx
- graphviz
- texlive-generic-extra
- texlive-fonts-recommended
- texlive-latex-extra
- latexmk
# tests
- check
- libsubunit-dev
- valgrind
#
# clang-6 python-3 install build and minimal example:
# linux64, minimal-example
- os: linux
compiler: clang-6.0
addons:
apt:
sources:
- llvm-toolchain-trusty-6.0
- ubuntu-toolchain-r-test
packages:
- clang-6.0
- clang-tidy-6.0
env:
- INSTALL=true
- PYTHON=python3
- CXX=clang-6.0
#
# gcc-4.8 static code analysis
- os: linux
compiler: gcc
addons:
apt:
packages:
- cppcheck
env:
- ANALYZE=true
#
# clang-6 static code analysis
- os: linux
compiler: clang-6.0
addons:
apt:
sources:
- llvm-toolchain-trusty-6.0
- ubuntu-toolchain-r-test
packages:
- check
- libsubunit-dev
- clang-6.0
- clang-tidy-6.0
env:
- ANALYZE=true
- PYTHON=python3
#
# clang-format code analysis
# is allowed to fail (see allow_failures)
- os: linux
compiler: clang-6.0
addons:
apt:
sources:
- llvm-toolchain-trusty-6.0
- ubuntu-toolchain-r-test
packages:
- clang-6.0
- clang-tidy-6.0
- clang-format-6.0
env:
- CLANG_FORMAT=true
#
# DOCKER build
- os: linux
compiler: gcc
env:
- DOCKER=true
#
# clang-6 FUZZER build
- os: linux
compiler: clang-6.0
addons:
apt:
sources:
- llvm-toolchain-trusty-6.0
- ubuntu-toolchain-r-test
packages:
- check
- libsubunit-dev
- clang-6.0
- clang-tidy-6.0
- libfuzzer-6.0-dev
env:
- FUZZER=true
#
# OSX clang build
- os: osx
compiler: clang
# disable homebrew auto update which takes a lot of time
env: HOMEBREW_NO_AUTO_UPDATE=1
cache:
directories:
- $HOME/Library/Caches/Homebrew
#
# SONAR gcc-4.9 build
- os: linux
compiler: gcc-4.9
addons:
sonarcloud:
organization: open62541
branches:
- master
- sonarcloud
env:
- SONAR=true
cache:
directories:
- '$HOME/.sonar/cache'
allow_failures:
#
# MacOS X
- env:
- HOMEBREW_NO_AUTO_UPDATE=1
# clang-format code analysis
- env:
- CLANG_FORMAT=true
- env:
- SONAR=true
cache:
pip: true
apt: true
directories:
- $HOME/install
- $HOME/.cache/pip
# combine all the commands into one single command. See https://github.com/travis-ci/travis-ci/issues/1066
before_install: |
set -eE
errorTrap() {
last_rv=$?
if [ $last_rv -ne 0 ] ; then
echo ""
echo ""
echo "----------------- Error -----------------"
echo ""
echo "---- Check additional output above!! ----"
# Wait a bit until the stdout is flushed
for i in 1 2 3 4 5 6 7 8 9 10; do echo "."; sleep 1; done
fi
exit $last_rv
}
trap errorTrap 0
# set paths for locally installed libs (like liburcu)
export LOCAL_PKG=$HOME/install
mkdir -p $LOCAL_PKG/lib
mkdir -p $LOCAL_PKG/include
mkdir -p $LOCAL_PKG/bin
export LIBRARY_PATH=$LOCAL_PKG/lib:$LIBRARY_PATH
export C_INCLUDE_PATH=$LOCAL_PKG/include:$C_INCLUDE_PATH
export CPLUS_INCLUDE_PATH=$LOCAL_PKG/include:$CPLUS_INCLUDE_PATH
export PKG_CONFIG_PATH=$LOCAL_PKG/lib/pkgconfig:$PKG_CONFIG_PATH
export PATH=$LOCAL_PKG:$LOCAL_PKG/bin:$PATH
export CMAKE_PREFIX_PATH=$LOCAL_PKG:CMAKE_PREFIX_PATH
# set local path for python packages
export PATH=$PATH:$HOME/.local/bin # linux
export PATH=$PATH:$HOME/Library/Python #OS X
export PATH=$PATH:$HOME/Library/Python/2.7/bin #OS X
if [ ${TRAVIS_OS_NAME} == "linux" ]; then sh ./tools/travis/travis_linux_before_install.sh; fi
if [ ${TRAVIS_OS_NAME} == "osx" ]; then sh ./tools/travis/travis_osx_before_install.sh; fi
script: |
set -eE
errorTrap() {
last_rv=$?
if [ $last_rv -ne 0 ] ; then
echo ""
echo ""
echo "----------------- Error -----------------"
echo ""
echo "---- Check additional output above!! ----"
# Wait a bit until the stdout is flushed
for i in 1 2 3 4 5 6 7 8 9 10; do echo "."; sleep 1; done
fi
exit $last_rv
}
trap errorTrap 0
if [ ${TRAVIS_OS_NAME} == "linux" ]; then sh ./tools/travis/travis_linux_script.sh; fi
if [ ${TRAVIS_OS_NAME} == "osx" ]; then sh ./tools/travis/travis_osx_script.sh; fi
after_success: |
set -eE
errorTrap() {
last_rv=$?
if [ $last_rv -ne 0 ] ; then
echo ""
echo ""
echo "----------------- Error -----------------"
echo ""
echo "---- Check additional output above!! ----"
# Wait a bit until the stdout is flushed
for i in 1 2 3 4 5 6 7 8 9 10; do echo "."; sleep 1; done
fi
exit $last_rv
}
trap errorTrap 0
if [ ${TRAVIS_OS_NAME} == "linux" ]; then sh ./tools/travis/travis_linux_after_success.sh; fi
# Sleep to flush travis output
echo == Build success ==
sleep 5
after_failure: |
# Sleep to flush travis output
echo == Build failed ==
sleep 5
deploy:
provider: releases
api_key:
# Uses token from user open62541-travis-release (managed by @Pro). Sets GITAUTH
secure: dtn6ayBGoWzeVMM6xYpSRZly1XOhS/2jdiwEHd0hYZIr0dNq18CxTiqbGrUwW1JsSiXoHaGSZhUVr06O1P/tfC3Ma6i7ugyun+yXz6FdZiwirjURI8HQe+XwR4Ui3hqgQSOHLMK/xtOkjM28AN1jg9u3//Zep69xJVIGAqNT0bE=
file:
- open62541-win32.zip
- open62541-win64.zip
- open62541-linux32.tar.gz
- open62541-linux64.tar.gz
- open62541-raspberrypi.tar.gz
- open62541.c
- open62541.h
file_glob: true
skip_cleanup: true
on:
repo: open62541/open62541
tags: true
condition: $MINGW=true