cartodb-postgresql/.travis.yml

42 lines
1.9 KiB
YAML
Raw Normal View History

language: c
2017-10-24 20:56:56 +08:00
sudo: required
env:
2019-01-03 02:01:30 +08:00
global:
- PGUSER=postgres
- PGDATABASE=postgres
- PGOPTIONS='-c client_min_messages=NOTICE'
2019-10-23 00:35:51 +08:00
jobs:
include:
2019-10-23 23:18:50 +08:00
- env: POSTGRESQL_VERSION="11" POSTGIS_VERSION="2.5"
2019-12-26 22:54:42 +08:00
dist: xenial
2019-10-23 23:18:50 +08:00
- env: POSTGRESQL_VERSION="12" POSTGIS_VERSION="2.5"
2019-12-26 22:54:42 +08:00
dist: bionic
2019-10-23 23:18:50 +08:00
- env: POSTGRESQL_VERSION="12" POSTGIS_VERSION="3"
2019-12-26 22:54:42 +08:00
dist: bionic
2020-11-16 22:23:28 +08:00
- env: POSTGRESQL_VERSION="13" POSTGIS_VERSION="3"
dist: bionic
2019-10-22 18:12:45 +08:00
script:
2020-11-16 22:23:28 +08:00
- sudo apt-get remove postgresql* -y
2019-01-03 02:01:30 +08:00
- 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 postgresql-common
2019-05-31 22:18:47 +08:00
- if [[ $POSTGRESQL_VERSION == '9.6' ]]; then sudo apt-get install -y postgresql-contrib-9.6; fi;
2019-10-22 18:12:45 +08:00
- sudo apt-get install -y --allow-unauthenticated postgresql-$POSTGRESQL_VERSION-postgis-$POSTGIS_VERSION postgresql-$POSTGRESQL_VERSION-postgis-$POSTGIS_VERSION-scripts postgis
2019-10-22 21:49:31 +08:00
# For pre12, install plpython2. For PG12 install plpython3
2020-11-16 22:23:28 +08:00
- if [[ $POSTGRESQL_VERSION == '11' ]]; then sudo apt-get install -y postgresql-plpython-$POSTGRESQL_VERSION python python-redis; else sudo apt-get install -y postgresql-plpython3-$POSTGRESQL_VERSION python3 python3-redis; fi;
- for i in $(pg_lsclusters | tail -n +2 | awk '{print $1}'); do sudo pg_dropcluster --stop $i main; done;
- sudo rm -rf /etc/postgresql/$POSTGRESQL_VERSION /var/lib/postgresql/$POSTGRESQL_VERSION /var/ramfs/postgresql/$POSTGRESQL_VERSION
- sudo pg_createcluster -u postgres $POSTGRESQL_VERSION main --start -- --auth-local trust --auth-host password
- export PGPORT=$(pg_lsclusters | grep $POSTGRESQL_VERSION | awk '{print $3}')
- make
- sudo make install
2019-01-03 02:01:30 +08:00
- make installcheck
after_failure:
- pg_lsclusters
- cat regression.out
- cat regression.diffs
- echo $PGPORT
2020-11-16 22:23:28 +08:00
- sudo cat /var/log/postgresql/postgresql-$POSTGRESQL_VERSION-main.log