2012-09-02 13:48:49 +02:00
|
|
|
language: cpp
|
|
|
|
|
2015-01-28 10:17:50 +01:00
|
|
|
sudo: false
|
2012-09-02 13:48:49 +02:00
|
|
|
|
2015-01-28 10:17:50 +01:00
|
|
|
addons:
|
|
|
|
postgresql: "9.3"
|
2014-05-23 19:33:45 +02:00
|
|
|
|
2015-01-28 10:17:50 +01:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
|
|
|
env: JOBS=12
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
|
|
|
env: JOBS=12
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
env: JOBS=6
|
2014-08-22 00:28:18 +02:00
|
|
|
|
|
|
|
install:
|
2015-01-28 10:17:50 +01:00
|
|
|
- if [[ $(uname -s) == 'Linux' ]]; then psql -U postgres -c 'create database template_postgis;' -U postgres; psql -U postgres -c 'create extension postgis;' -d template_postgis -U postgres; fi;
|
|
|
|
- if [[ $(uname -s) == 'Darwin' ]]; then brew install bash; export PATH="$(brew --prefix)/bin":${PATH}; fi;
|
|
|
|
- echo `which bash`
|
2014-08-13 00:56:41 +02:00
|
|
|
|
2013-01-04 21:25:07 +01:00
|
|
|
script:
|
2015-01-28 10:17:50 +01:00
|
|
|
- source bootstrap.sh
|
|
|
|
- ./configure
|
|
|
|
- cat config.log
|
|
|
|
- make
|
2015-02-02 21:27:14 +01:00
|
|
|
- make test
|