forked from libgeos/geos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 32-bit build in travis-ci config (libgeos#658)
- Add 32-bit builds to Travis CI matrix - Install gcc-multilib on Travis CI for -m32 - Add IRC use_notice to Travis CI notifications - Set on_success and on_failure separately for IRC and email - Ignore _build - convenient for CMake builds Patch by Mateusz Loskot git-svn-id: http://svn.osgeo.org/geos/trunk@3934 5242fede-7e19-0410-aef8-94bd7d2200fb
- Loading branch information
Sandro Santilli
committed
Sep 2, 2013
1 parent
4499c55
commit 00a94c9
Showing
4 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
_build | ||
aclocal.m4 | ||
Makefile.in | ||
Makefile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,19 +15,26 @@ compiler: | |
|
||
env: | ||
matrix: | ||
- GEOS_TRAVIS_BUILD=autotools | ||
- GEOS_TRAVIS_BUILD=cmake | ||
- 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: | ||
on_success: always # [always|never|change] # default: change | ||
on_failure: always # [always|never|change] # default: always | ||
irc: "chat.freenode.net#postgis" | ||
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 | ||
- [email protected] | ||
on_success: change | ||
on_failure: always | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters