forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
38 lines (32 loc) · 1.04 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
# .travis.yml - Travis CI service confiuration for GEOS
#
#
# This is free software; you can redistribute and/or modify it under
# the terms of the GNU Lesser General Public Licence as published
# by the Free Software Foundation.
# See the COPYING file for more information.
#
language: cpp
compiler:
- g++
- clang
env:
matrix:
- GEOS_BUILD_TOOL=autotools CFLAGS=-m32 CXXFLAGS=-m32
- GEOS_BUILD_TOOL=autotools CFLAGS=-m64 CXXFLAGS=-m64
- GEOS_BUILD_TOOL=cmake CFLAGS=-m32 CXXFLAGS=-m32
- GEOS_BUILD_TOOL=cmake CFLAGS=-m64 CXXFLAGS=-m64
before_install: ./tools/ci/before_install.sh
script: ./tools/ci/script.sh
notifications:
irc:
channels:
- "chat.freenode.net#postgis"
on_success: always # [always|never|change] # default: change
on_failure: always # [always|never|change] # default: always
use_notice: true
email:
recipients:
#- [email protected] # TODO: whitelist this e-mail
on_success: change
on_failure: always