2019-12-26 22:45:15 +08:00
|
|
|
language: node_js
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres
|
2019-12-26 22:59:57 +08:00
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- env: POSTGRESQL_VERSION="9.6"
|
|
|
|
dist: xenial
|
|
|
|
node_js: 10
|
|
|
|
- env: POSTGRESQL_VERSION="10"
|
|
|
|
dist: xenial
|
|
|
|
node_js: 10
|
|
|
|
- env: POSTGRESQL_VERSION="11"
|
|
|
|
dist: xenial
|
|
|
|
node_js: 10
|
|
|
|
- env: POSTGRESQL_VERSION="11"
|
|
|
|
dist: xenial
|
|
|
|
node_js: 12
|
|
|
|
- env: POSTGRESQL_VERSION="12"
|
|
|
|
dist: bionic
|
|
|
|
node_js: 10
|
|
|
|
- env: POSTGRESQL_VERSION="12"
|
|
|
|
dist: bionic
|
|
|
|
node_js: 12
|
2018-05-24 00:06:52 +08:00
|
|
|
|
|
|
|
before_install:
|
|
|
|
- sudo service postgresql stop;
|
2019-12-26 22:45:15 +08:00
|
|
|
- sudo apt-get remove postgresql* -y
|
|
|
|
- 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
|
|
|
|
- sudo pg_dropcluster --stop $POSTGRESQL_VERSION main
|
|
|
|
- sudo rm -rf /etc/postgresql/$POSTGRESQL_VERSION /var/lib/postgresql/$POSTGRESQL_VERSION
|
|
|
|
- sudo pg_createcluster -u postgres $POSTGRESQL_VERSION main -- -A trust
|
|
|
|
- sudo /etc/init.d/postgresql start $POSTGRESQL_VERSION || sudo journalctl -xe
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- node script/create-test-tables.js pg://postgres@127.0.0.1:$PGPORT/postgres
|