27 lines
1.5 KiB
YAML
27 lines
1.5 KiB
YAML
language: c
|
|
dist: trusty
|
|
sudo: required
|
|
|
|
env:
|
|
- PGUSER=postgres PGDATABASE=postgres
|
|
|
|
env:
|
|
- POSTGRESQL_VERSION="9.5", POSTGIS_VERSION="2.4"
|
|
- POSTGRESQL_VERSION="10", POSTGIS_VERSION="2.4"
|
|
|
|
before_install:
|
|
- export POSTGIS_PACKAGE_VERSION=$(apt list postgis -a 2>/dev/null | grep $POSTGIS_VERSION | awk '{ print $2 }')
|
|
- sudo service postgresql stop;
|
|
- sudo apt-get install -y --allow-unauthenticated --no-install-recommends --no-install-suggests postgresql-$POSTGRESQL_VERSION postgresql-client-$POSTGRESQL_VERSION postgresql-server-dev-$POSTGRESQL_VERSION postgis=$POSTGIS_PACKAGE_VERSION postgresql-$POSTGRESQL_VERSION-postgis-scripts postgresql-$POSTGRESQL_VERSION-postgis-$POSTGIS_VERSION postgresql-plpython-$POSTGRESQL_VERSION
|
|
- echo -e "# TYPE DATABASE USER ADDRESS METHOD \nlocal all postgres trust\nlocal all all trust\nhost all all 127.0.0.1/32 trust" | sudo tee /etc/postgresql/$POSTGRESQL_VERSION/main/pg_hba.conf
|
|
- export PGPORT=`grep ^port /etc/postgresql/$POSTGRESQL_VERSION/main/postgresql.conf | awk '{print $3}'`
|
|
- export PGUSER=postgres
|
|
- export PGDATABASE=postgres
|
|
- sudo service postgresql restart $POSTGRESQL_VERSION;
|
|
|
|
script:
|
|
- make
|
|
- sudo make install
|
|
- PGOPTIONS='-c client_min_messages=NOTICE' PGUSER=postgres make installcheck ||
|
|
{ cat regression.diffs; false; }
|