From 547c78c48f4237265820691898e9e4c7e1297cba Mon Sep 17 00:00:00 2001 From: Andrew Ruthven Date: Fri, 9 Dec 2022 23:47:21 +1300 Subject: [PATCH] Debian Unstable has PostgreSQL 15 now --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ed570436..b9c19e4d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -64,13 +64,13 @@ test: - ln -s /etc/davical/regression-conf.php /etc/davical/myempty-conf.php - mkdir -p /var/log/davical - chown www-data /var/log/davical - - sed -i '/peer/d' /etc/postgresql/14/main/pg_hba.conf - - echo 'local all all trust' >> /etc/postgresql/14/main/pg_hba.conf - - pg_ctlcluster 14 main start + - sed -i '/peer/d' /etc/postgresql/15/main/pg_hba.conf + - echo 'local all all trust' >> /etc/postgresql/15/main/pg_hba.conf + - pg_ctlcluster 15 main start - su postgres -c 'createuser davical_dba --createdb --createrole --superuser' - su postgres -c 'createuser davical_app --superuser' - su postgres -c 'createuser testrunner --superuser' - - pg_ctlcluster 14 main restart + - pg_ctlcluster 15 main restart - a2enmod rewrite - apache2ctl start - useradd testrunner