-
Notifications
You must be signed in to change notification settings - Fork 207
/
.travis.yml
591 lines (578 loc) · 20.1 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
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
language: cpp
# Use the latest Travis images since they are more up to date than the stable release.
group: edge
before_script:
- export -f travis_fold
script:
- "bash -ex .travis-ci.sh"
addons:
apt:
packages: &base_build
# This is the absolute minimum for configure to pass
# Non C++ based tasks use it so they can run make builtfiles
- ccache
- libcppunit-dev
- bison
- flex
- uuid-dev
- libprotobuf-dev
- protobuf-compiler
- libprotoc-dev
packages: &core_build
# This is all the bits we need to enable all options
- *base_build
- libftdi-dev
- libftdi1
- libusb-1.0-0-dev
- liblo-dev
- libavahi-glib1
- libncurses5-dev
- libmicrohttpd-dev
packages: &core_build_clang_recent
- *core_build
- clang-10
packages: &core_build_gpp_latest
- *core_build
- g++-10
packages: &core_build_clang_latest
- *core_build
- clang-11
packages: &bionic_build_extras
# To fix the build/add missing components
- libtool
- pkg-config
packages: &bionic_build_extras_python2
- *bionic_build_extras
- python-protobuf
- python-numpy
- python-pip
packages: &bionic_build_extras_python3
- *bionic_build_extras
# The apt packaged files don't seem to work with Bionic and Python 3, so do it via pip
# To compile numpy
- python3-dev
# - python3-protobuf
# - python3-numpy
# - python3-pip
homebrew:
packages: &mac_core_build
- ccache
# This is all the bits we need to enable all options on Mac
- bison
- flex
# Installing via the addon isn't currently working so do it the old fashioned way below
# - https://raw.githubusercontent.com/Homebrew/homebrew-core/024ca9a4730a1f26ceede43485fbf62ef6f41179%5E/Formula/[email protected]
- liblo
- libmicrohttpd
- ossp-uuid
# Looks like this is Python 3 only, so install via pip
# - numpy
- libusb
packages: &mac_cppunit_113
# Installing via the addon isn't currently working so do it the old fashioned way below
# - https://raw.githubusercontent.com/Homebrew/homebrew-core/e6e43cf6a3^/Formula/cppunit.rb # install a slightly older cppunit, as latest needs C++11 support
jobs:
fast_finish: true
include:
- os: linux
dist: bionic
arch: arm64
env: TASK='doxygen'
addons:
apt:
packages:
- *core_build_gpp_latest
- *bionic_build_extras_python2
- doxygen
- graphviz
sources:
- ubuntu-toolchain-r-test
- os: linux
dist: bionic
arch: arm64
env: TASK='lint'
addons:
apt:
packages:
- *core_build
- *bionic_build_extras_python2
- os: linux
dist: bionic
arch: arm64
env:
- TASK='check-licences'
- PYTHON='python3'
addons:
apt:
packages:
- *core_build
- *bionic_build_extras_python3
- os: linux
dist: bionic
arch: arm64
env:
- TASK='codespell'
- PYTHON='python3'
addons:
apt:
packages:
- *core_build
- *bionic_build_extras_python3
- moreutils
- os: linux
dist: bionic
arch: arm64
env: TASK='weblint'
- os: linux
dist: bionic
arch: arm64
env: TASK='flake8'
python: '2.7'
addons:
apt:
packages:
- *base_build
- *bionic_build_extras_python2
- os: linux
dist: bionic
arch: arm64
env:
- TASK='flake8'
- PYTHON='python3'
addons:
apt:
packages:
- *base_build
- *bionic_build_extras_python3
- os: linux
dist: xenial
arch: arm64
env: TASK='pychecker'
python: '2.7'
addons:
apt:
packages:
- *base_build
- python-tk
- python-dev
- os: linux
dist: xenial
arch: arm64
env: TASK='pychecker-wip'
python: '2.7'
addons:
apt:
packages:
- *base_build
- python-tk
- python-dev
# Only run Travis builds against the zero credit partner queue solution
# - os: linux
# dist: bionic
# arch: amd64
# compiler: clang
# env:
# - TASK='compile'
# - PYTHON='python3'
# addons:
# apt:
# packages:
# - *core_build_clang_latest
# - *bionic_build_extras_python3
# sources:
# - sourceline: "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-11 main"
# key_url: "https://apt.llvm.org/llvm-snapshot.gpg.key"
# - sourceline: "ppa:ubuntu-toolchain-r/test"
# - os: linux
# dist: bionic
# arch: amd64
# compiler: gcc
# env: TASK='compile'
# python: '2.7'
# addons:
# apt:
# packages:
# - *core_build_gpp_latest
# - *bionic_build_extras_python2
# sources:
# - ubuntu-toolchain-r-test
- os: linux
dist: bionic
arch: arm64
compiler: clang
env:
- TASK='compile'
- PYTHON='python3'
addons:
apt:
packages:
- *core_build_clang_recent
- *bionic_build_extras_python3
- os: linux
dist: bionic
arch: arm64
compiler: gcc
env: TASK='compile'
python: '2.7'
addons:
apt:
packages:
- *core_build_gpp_latest
- *bionic_build_extras_python2
sources:
- ubuntu-toolchain-r-test
- os: linux
dist: bionic
arch: s390x
compiler: clang
env: TASK='compile'
python: '2.7'
addons:
apt:
packages:
- *core_build_clang_recent
- *bionic_build_extras_python2
- os: linux
dist: bionic
arch: s390x
compiler: gcc
env: TASK='compile'
python: '2.7'
addons:
apt:
packages:
- *core_build_gpp_latest
- *bionic_build_extras_python2
sources:
- ubuntu-toolchain-r-test
# - os: osx
# osx_image: xcode9.4
# compiler: clang
# env:
# - TASK='compile'
# - CPPUNIT='1.13'
# - PROTOBUF='latest'
# - LIBFTDI='0'
# addons:
# homebrew:
# packages:
# - *mac_core_build
# - *mac_cppunit_113
# - protobuf
# - libftdi0
# update: false
# - os: osx
# osx_image: xcode9.4
# compiler: gcc
# env:
# - TASK='compile'
# - CPPUNIT='1.13'
# - PROTOBUF='latest'
# - LIBFTDI='0'
# addons:
# homebrew:
# packages:
# - *mac_core_build
# - *mac_cppunit_113
# - protobuf
# - libftdi0
# update: false
# - os: osx
# osx_image: xcode9.4
# compiler: clang
# env:
# - TASK='compile'
# - CPPUNIT='1.14'
# - PROTOBUF='latest'
# - LIBFTDI='0'
# addons:
# homebrew:
# packages:
# - *mac_core_build
# - cppunit
# - protobuf
# - libftdi0
# update: false
# - os: osx
# osx_image: xcode9.4
# compiler: gcc
# env:
# - TASK='compile'
# - CPPUNIT='1.14'
# - PROTOBUF='latest'
# - LIBFTDI='0'
# addons:
# homebrew:
# packages:
# - *mac_core_build
# - cppunit
# - protobuf
# - libftdi0
# update: false
# - os: osx
# osx_image: xcode9.4
# compiler: clang
# env:
# - TASK='compile'
# - CPPUNIT='1.14'
# - PROTOBUF='latest'
# - LIBFTDI='1'
# addons:
# homebrew:
# packages:
# - *mac_core_build
# - cppunit
# - protobuf
# - libftdi # install the latest cppunit, which needs C++11
# update: false
# - os: osx
# osx_image: xcode9.4
# compiler: gcc
# env:
# - TASK='compile'
# - CPPUNIT='1.14'
# - PROTOBUF='latest'
# - LIBFTDI='1'
# addons:
# homebrew:
# packages:
# - *mac_core_build
# - cppunit
# - protobuf
# - libftdi # install the latest cppunit, which needs C++11
# update: false
- os: linux
dist: bionic
arch: arm64
compiler: gcc
env: TASK='coverage'
addons:
apt:
packages:
- *core_build_gpp_latest
sources:
- sourceline: "ppa:ubuntu-toolchain-r/test"
- os: linux
dist: xenial
arch: arm64
compiler: gcc
env: TASK='coverity'
addons:
apt:
packages:
# Coverity doesn't work with g++-5 or g++-6 yet
- *core_build
- g++-4.9
sources:
- sourceline: "ppa:ubuntu-toolchain-r/test"
- os: linux
dist: bionic
arch: arm64
env: TASK='spellintian'
addons:
apt:
packages:
- *core_build
- *bionic_build_extras_python2
- lintian
- moreutils
- os: linux
dist: bionic
arch: arm64
env: TASK='spellintian-duplicates'
addons:
apt:
packages:
- *core_build
- *bionic_build_extras_python2
- lintian
- moreutils
allow_failures:
- os: linux
dist: xenial
arch: arm64
env: TASK='pychecker-wip'
# - os: osx
# osx_image: xcode9.4
# compiler: clang
# env:
# - TASK='compile'
# - CPPUNIT='1.13'
# - LIBFTDI='0'
# - os: osx
# osx_image: xcode9.4
# compiler: clang
# env:
# - TASK='compile'
# - CPPUNIT='1.14'
# - LIBFTDI='0'
# - os: osx
# osx_image: xcode9.4
# compiler: gcc
# env:
# - TASK='compile'
# - CPPUNIT='1.13'
# - LIBFTDI='0'
# - os: osx
# osx_image: xcode9.4
# compiler: gcc
# env:
# - TASK='compile'
# - CPPUNIT='1.14'
# - LIBFTDI='0'
# - os: osx
# osx_image: xcode9.4
# compiler: clang
# env:
# - TASK='compile'
# - CPPUNIT='1.14'
# - LIBFTDI='1'
# - os: osx
# osx_image: xcode9.4
# compiler: gcc
# env:
# - TASK='compile'
# - CPPUNIT='1.14'
# - LIBFTDI='1'
- os: osx
osx_image: xcode9.4
compiler: clang
env:
- TASK='compile'
- CPPUNIT='1.14'
- PROTOBUF='latest'
- LIBFTDI='1'
- os: osx
osx_image: xcode9.4
compiler: gcc
env:
- TASK='compile'
- CPPUNIT='1.14'
- PROTOBUF='latest'
- LIBFTDI='1'
- os: linux
dist: bionic
arch: arm64
compiler: gcc
env: TASK='coverage'
- os: linux
dist: xenial
arch: arm64
compiler: gcc
env: TASK='coverity'
- os: linux
dist: bionic
arch: arm64
env: TASK='spellintian'
- os: linux
dist: bionic
arch: arm64
env: TASK='spellintian-duplicates'
env:
global:
# No colours in terminal (to reduce log file size)
- TERM=dumb
# Parallel make build
- MAKEFLAGS="-j 2"
# -- BEGIN Coverity Scan ENV
- COVERITY_SCAN_BUILD_COMMAND_PREPEND="cov-configure --comptype gcc --compiler gcc-4.9 --template && autoreconf -i && ./configure --enable-ja-rule --enable-e133"
# The build command with all of the arguments that you would apply to a manual `cov-build`
# Usually this is the same as STANDARD_BUILD_COMMAND, excluding the automated test arguments
- COVERITY_SCAN_BUILD_COMMAND="make"
# Name of the project
- COVERITY_SCAN_PROJECT_NAME="$TRAVIS_REPO_SLUG"
# Email address for notifications related to this build
- COVERITY_SCAN_NOTIFICATION_EMAIL="[email protected]"
# Regular expression selects on which branches to run analysis
# Be aware of quotas. Do not run on every branch/commit
- COVERITY_SCAN_BRANCH_PATTERN=".*"
# COVERITY_SCAN_TOKEN via "travis encrypt" using the repo's public key
- secure: "U+NmPtScHZ1NLmkDrzpqApHmJvELV44cXgjQsxA8N8xIATckbs+DrmWSNeECENyvuOPz+nPzglSgBvJtejf97jYJIIwAExq5TJMUAIPFS6KU3mohODW2PZSoVoUyJPzFIlhzcELQgONI+ILLm29lNdQNb7GFUVtO6+jS10AFtWY="
# -- END Coverity Scan ENV
cache:
apt: true
ccache: true
npm: true
pip: true
directories:
- $HOME/.m2 # maven cache
- $HOME/Library/Caches/Homebrew # homebrew bottle cache
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log # erase log
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew cleanup; fi # avoid caching old package versions
- ccache -s # see how many hits ccache got
before_install:
- if [ "$PYTHON" == "python3" -a "$TRAVIS_CPU_ARCH" != "arm64" ]; then pyenv global 3.8.1; fi
#On arm64 (at least) pip is now pip3, so symlink it to pip2 unless we're using python3.
- if [ "$PYTHON" != "python3" ]; then sudo rm /usr/local/bin/pip && sudo ln -s /usr/local/bin/pip2 /usr/local/bin/pip; fi
#Switch node to version 16 LTS, as newer LTS ones don't work with Ubuntu 18.04 and some older ones are too old
- if [ "$TASK" = "weblint" ]; then nvm install 16 && nvm use 16; fi
#Fix permissions for unbound (and possibly others)
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [ ! -d /usr/local/sbin ]; then sudo mkdir -p /usr/local/sbin && sudo chown -R $(whoami) /usr/local/sbin; fi; fi
#Add a missing gnupg folder
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [ ! -d /usr/local/Cellar/gnupg2/2.2.5 ]; then sudo mkdir -p /usr/local/Cellar/gnupg2/2.2.5 && sudo chown -R $(whoami) /usr/local/Cellar/gnupg2/2.2.5; fi; fi
#We install packages via brew which pull in numpy, so try a reinstall over the pip numpy to avoid conflicts
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew reinstall numpy || brew link --overwrite numpy; fi
#Fix a broken homebrew libtool install
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew reinstall libtool; fi
#Fix a broken homebrew gnupg install
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew uninstall --ignore-dependencies gnupg; fi
#Fix a broken homebrew python upgrade - see https://github.com/Homebrew/homebrew-core/issues/26358
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew upgrade python || true; fi
#Uninstall some homebrew packages which aren't required so we don't end up updating and rebuilding them. Force so it doesn't reinstall
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew uninstall --ignore-dependencies --force cgal liblwgeom libspatialite mercurial postgis postgres sfcgal; fi
#Having fixed everything up, update to the bleeding edge
#Skip updating for now as it seems to be breaking the build, also now done via the addon
#- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then PATH=/usr/local/opt/ccache/libexec:$PATH; fi # Use ccache on Mac too
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then mkdir -p ${HOME}/Library/Python/2.7/lib/python/site-packages; echo 'import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")' >> ${HOME}/Library/Python/2.7/lib/python/site-packages/homebrew.pth; fi
# Installing via the addon isn't currently working so do it the old fashioned way
- if [ "$TRAVIS_OS_NAME" == "osx" -a "$CPPUNIT" != "latest" ]; then brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/e6e43cf6a3%5E/Formula/cppunit.rb; fi # install a slightly older cppunit, as latest needs C++11 support
#Coverity doesn't work with g++ 5 or 6, so only upgrade to g++ 4.9 for that
- if [ "$TRAVIS_OS_NAME" == "linux" -a \( "$TASK" = "compile" -o "$TASK" = "coverage" -o "$TASK" = "doxygen" \) -a "$CXX" = "g++" ]; then export CXX="ccache g++-10" CC="ccache gcc-10"; fi
- if [ "$TASK" = "coverity" -a "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
#Use the latest clang if we're compiling with clang, except on arm64 and s390x where it's not available
- if [ "$TRAVIS_OS_NAME" == "linux" -a "$CXX" = "clang++" -a "$TRAVIS_CPU_ARCH" != "arm64" -a "$TRAVIS_CPU_ARCH" != "s390x" ]; then export CXX="clang++-11" CC="clang-11"; fi
#Use a recent clang if we're compiling with clang on arm64 or s390x as the latest isn't available
- if [ "$TRAVIS_OS_NAME" == "linux" -a "$CXX" = "clang++" -a \( "$TRAVIS_CPU_ARCH" == "arm64" -o "$TRAVIS_CPU_ARCH" == "s390x" \) ]; then export CXX="clang++-10" CC="clang-10"; fi
#Report the compiler version
- $CXX --version
install:
# Match the version of protobuf being installed via apt/Homebrew
- if [ "$PROTOBUF" == "latest" -a \( "$TRAVIS_DIST" != "bionic" -o "$PYTHON" == "python3" \) ]; then pip install --user protobuf; fi
- if [ "$PROTOBUF" != "latest" -a \( "$TRAVIS_DIST" != "bionic" -o "$PYTHON" == "python3" \) ]; then pip install --user protobuf==3.1.0; fi
# disable until can be added to all build variants
#- pip install --user timeout-decorator
# We sometimes need to use pip rather than apt on Bionic
- if [ "$TRAVIS_OS_NAME" == "linux" -a "$TRAVIS_DIST" == "bionic" -a "$TRAVIS_CPU_ARCH" != "arm64" ]; then pip install --user wheel; fi # Wheel only needed to fix a broken bionic build
# Install numpy via deb where it works, otherwise on OS X and non-bionic Python 2 Linux install via pip
- if [ "$TRAVIS_DIST" != "bionic" -o "$PYTHON" == "python3" ]; then pip install --user numpy; fi
- if [ "$TASK" = "coverage" ]; then pip install --user cpp-coveralls; fi
- if [ "$TASK" = "flake8" ]; then pip install --user flake8; fi
- if [ "$TASK" = "codespell" ]; then pip3 install --user codespell==2.2.1; fi
- if [ "$TASK" = "weblint" ]; then npm --verbose install -g grunt-cli; fi
- if [ "$TASK" = "weblint" ]; then grunt --version --verbose; fi
# If this causes SSL errors, then Sourceforge is probably in disaster recovery mode and needing Javascript. Could switch to a specific mirror, e.g. kent.dl.sourceforge.net
- if [ "$TASK" = "pychecker" -o "$TASK" = "pychecker-wip" ]; then pip install --user http://sourceforge.net/projects/pychecker/files/pychecker/0.8.19/pychecker-0.8.19.tar.gz/download; fi
# This is a very bodgy workaround to the fact that the pip install of the archive doesn't seem to work properly now on Travis
- if [ "$TASK" = "pychecker" -o "$TASK" = "pychecker-wip" ]; then sudo mkdir -p /pychecker/; sudo ln -s /home/travis/.local/lib/python2.7/site-packages/pychecker/checker.py /pychecker/checker.py; fi
# Installing via the addon isn't currently working so do it the old fashioned way
- if [ "$TRAVIS_OS_NAME" == "osx" -a "$CPPUNIT" != "1.14" ]; then brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/e6e43cf6a3%5E/Formula/cppunit.rb; fi # install a slightly older cppunit, as latest needs C++11 support
# This is no longer allowed, so build all Mac builds as protobuf latest
#- if [ "$TRAVIS_OS_NAME" == "osx" -a "$PROTOBUF" != "latest" ]; then brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/024ca9a4730a1f26ceede43485fbf62ef6f41179%5E/Formula/[email protected]; fi # install protobuf 3.1 as that's the latest we support everywhere
#- if [ "$TRAVIS_OS_NAME" == "osx" -a "$PROTOBUF" != "latest" ]; then brew link -f https://raw.githubusercontent.com/Homebrew/homebrew-core/024ca9a4730a1f26ceede43485fbf62ef6f41179%5E/Formula/[email protected]; export PKG_CONFIG_PATH=/usr/local/opt/[email protected]/lib/pkgconfig; brew install --build-from-source --ignore-dependencies --env=std protobuf-c; fi # While protobuf is not on the latest release
after_failure:
- if [ -f ${TRAVIS_BUILD_DIR}/config.log ]; then cat ${TRAVIS_BUILD_DIR}/config.log; fi
- if [ -f ${TRAVIS_BUILD_DIR}/ola-*/_build/config.log ]; then cat ${TRAVIS_BUILD_DIR}/ola-*/_build/config.log; fi
- if [ -f ${TRAVIS_BUILD_DIR}/ola-*/_build/sub/config.log ]; then cat ${TRAVIS_BUILD_DIR}/ola-*/_build/sub/config.log; fi
- if [ -f /home/travis/.npm/_logs/*-debug.log ]; then cat /home/travis/.npm/_logs/*-debug.log; fi
after_success:
- if [ "$TASK" = "coverage" ]; then coveralls --gcov /usr/bin/gcov-10 -b . -E '.*Test\.cpp$' -E '.*\.pb\.cc$' -E '.*\.pb\.cpp$' -E '.*\.pb\.h$' -E '.*\.yy\.cpp$' -E '.*\.tab\.cpp$' -E '.*\.tab\.h$' -E '.*/doxygen/examples.*$' --gcov-options '\-lp' > /dev/null; fi
after_script:
- if [ "$TASK" = "coverity" ]; then tail -n 10000 ${TRAVIS_BUILD_DIR}/cov-int/build-log.txt; cat ${TRAVIS_BUILD_DIR}/cov-int/scm_log.txt; fi
notifications:
irc:
channels:
- "chat.freenode.net#openlighting"
on_success: change
on_failure: change