2012-09-02 11:48:49 +00:00
|
|
|
language: cpp
|
|
|
|
|
2015-01-28 09:17:50 +00:00
|
|
|
sudo: false
|
2012-09-02 11:48:49 +00:00
|
|
|
|
2015-01-28 09:17:50 +00:00
|
|
|
addons:
|
|
|
|
postgresql: "9.3"
|
2014-05-23 17:33:45 +00:00
|
|
|
|
2015-01-28 09:17:50 +00: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-21 22:28:18 +00:00
|
|
|
|
|
|
|
install:
|
2015-01-28 09:17:50 +00: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-12 22:56:41 +00:00
|
|
|
|
2013-01-04 20:25:07 +00:00
|
|
|
script:
|
2015-01-28 09:17:50 +00:00
|
|
|
- source bootstrap.sh
|
|
|
|
- ./configure
|
|
|
|
- cat config.log
|
|
|
|
- make
|
2013-09-27 03:31:26 +00:00
|
|
|
- make test-local
|