Quotes around otherwise ambiguous (underline containing) name
[geos.git] / .travis.yml
blob275333a2f847addb05d0e30ef7dfd3aba4c647bc
1 # .travis.yml - Travis CI service configuration for GEOS
4 # This is free software; you can redistribute and/or modify it under
5 # the terms of the GNU Lesser General Public Licence as published
6 # by the Free Software Foundation.
7 # See the COPYING file for more information.
9 sudo: false
11 language: cpp
13 compiler:
14     - g++
15     - clang
17 env:
18     - GEOS_BUILD_TOOL=autotools CFLAGS=-m32 CXXFLAGS=-m32
19     - GEOS_BUILD_TOOL=autotools CFLAGS=-m64 CXXFLAGS=-m64
20     - GEOS_BUILD_TOOL=cmake CFLAGS=-m32 CXXFLAGS=-m32
21     - GEOS_BUILD_TOOL=cmake CFLAGS=-m64 CXXFLAGS=-m64
23 matrix:
24   fast_finish: true
26 addons:
27   apt:
28     sources:
29       - george-edison55-precise-backports
30     packages:
31       - cmake
32       - cmake-data
33       - g++-multilib
34       - gcc-multilib
35       - make
37 script: ./tools/ci/script.sh
39 notifications:
40     irc:
41         channels:
42             - "chat.freenode.net#postgis-activity"
43         on_success: always # [always|never|change] # default: change
44         on_failure: always # [always|never|change] # default: always
45         use_notice: false
46     email:
47         recipients:
48             - geos-devel@lists.osgeo.org
49         on_success: change
50         on_failure: always
51     webhooks:
52         urls:
53             - https://webhooks.gitter.im/e/a38e35772d115f246fb9
54         on_success: always  # options: [always|never|change] default: always
55         on_failure: always  # options: [always|never|change] default: always
56         on_start: always    # options: [always|never|change] default: always