forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
62 lines (54 loc) · 1.53 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
# .travis.yml - Travis CI service configuration 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.
#
sudo: false
language: cpp
compiler:
- g++
- clang
branches:
only:
- master
- svn-3.6
- svn-3.5
env:
- 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
matrix:
fast_finish: true
addons:
apt:
sources:
- george-edison55-precise-backports
packages:
- cmake
- cmake-data
- g++-multilib
- gcc-multilib
- make
script: ./tools/ci/script.sh
notifications:
irc:
channels:
- "chat.freenode.net#postgis-activity"
on_success: always # [always|never|change] # default: change
on_failure: always # [always|never|change] # default: always
use_notice: false
email:
recipients:
on_success: change
on_failure: always
webhooks:
urls:
- https://webhooks.gitter.im/e/a38e35772d115f246fb9
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: always # options: [always|never|change] default: always