Fix memory leak in extent-limited overlay operations
[geos.git] / .travis.yml
blobf3a5b4a4653730bd97ece798fda9e4e5efb72501
1 # .travis.yml - Travis CI service confiuration 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 language: cpp
11 compiler:
12     - g++
13     - clang
15 env:
16     matrix:
17         - GEOS_BUILD_TOOL=autotools CFLAGS=-m32 CXXFLAGS=-m32
18         - GEOS_BUILD_TOOL=autotools CFLAGS=-m64 CXXFLAGS=-m64
19         - GEOS_BUILD_TOOL=cmake CFLAGS=-m32 CXXFLAGS=-m32
20         - GEOS_BUILD_TOOL=cmake CFLAGS=-m64 CXXFLAGS=-m64
22 before_install: ./tools/ci/before_install.sh
24 script: ./tools/ci/script.sh
26 notifications:
27     irc:
28         channels:
29             - "chat.freenode.net#postgis"
30         on_success: always # [always|never|change] # default: change
31         on_failure: always # [always|never|change] # default: always
32         use_notice: true
33     email:
34         recipients:
35             #- geos-devel@lists.osgeo.org # TODO: whitelist this e-mail
36         on_success: change
37         on_failure: always