node-postgres/.travis.yml
2019-12-26 15:50:47 +01:00

29 lines
986 B
YAML

dist: xenial
sudo: false
language: node_js
node_js:
- "10"
- "12"
env:
global:
- CC=clang CXX=clang++ npm_config_clang=1 PGUSER=postgres PGDATABASE=postgres
matrix:
- POSTGRESQL_VERSION="10"
- POSTGRESQL_VERSION="11"
- POSTGRESQL_VERSION="12"
before_install:
- sudo service postgresql stop;
- 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