postgis/.travis.yml
Sandro Santilli 54e0ef203f Add dump-restore testing for Travis
See #3444

Runs dump-restore tests for both scripts and extension.

git-svn-id: http://svn.osgeo.org/postgis/trunk@14726 b70326c6-7e19-0410-871a-916f4a2858ee
2016-03-01 10:43:13 +00:00

39 lines
771 B
YAML

env:
global:
- RUNTESTFLAGS=-v
addons:
postgresql: "9.4"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y
postgresql-9.4 postgresql-server-dev-9.4
build-essential autoconf libtool libcunit1-dev
xsltproc docbook-xsl docbook-mathml dblatex
libproj-dev libgdal-dev libgeos-dev libjson0-dev
- dpkg -l | grep postgresql
- ./autogen.sh
language: c
compiler: gcc
script:
- ./configure
- make
- make check
- make check RUNTESTFLAGS='--dumprestore'
- sudo make install
- make installcheck
- make installcheck RUNTESTFLAGS='--dumprestore'
notifications:
email: false
irc:
channels:
- "irc.freenode.org#postgis-activity"
on_success: change
on_failure: always
use_notice: false