Fix release date
[geos.git] / .travis.yml
blob914d26fc54271a9c4c808fc5bd276d1d86071f97
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     packages:
29     - gcc-multilib
30     - g++-multilib
31     - cmake
32     - make
34 script: ./tools/ci/script.sh
36 notifications:
37     irc:
38         channels:
39             - "chat.freenode.net#postgis-activity"
40         on_success: always # [always|never|change] # default: change
41         on_failure: always # [always|never|change] # default: always
42         use_notice: false
43     email:
44         recipients:
45             - geos-devel@lists.osgeo.org
46         on_success: change
47         on_failure: always
48     webhooks:
49         urls:
50             - https://webhooks.gitter.im/e/a38e35772d115f246fb9
51         on_success: always  # options: [always|never|change] default: always
52         on_failure: always  # options: [always|never|change] default: always
53         on_start: always     # options: [always|never|change] default: always