aboutsummaryrefslogtreecommitdiff
path: root/ci/jobs
diff options
context:
space:
mode:
Diffstat (limited to 'ci/jobs')
-rwxr-xr-xci/jobs/2-test/test.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/jobs/2-test/test.sh b/ci/jobs/2-test/test.sh
index 6c3d2be21..06bc18097 100755
--- a/ci/jobs/2-test/test.sh
+++ b/ci/jobs/2-test/test.sh
@@ -8,11 +8,15 @@ set -evu
make
make install
+sudo -u postgres /usr/lib/postgresql/15/bin/postgres -D /etc/postgresql/15/main -h localhost -p 5432 &
+sleep 10
+sudo -u postgres createuser -p 5432 root
+sudo -u postgres createdb -p 5432 -O root talercheck
check_command()
{
# Set LD_LIBRARY_PATH so tests can find the installed libs
- LD_LIBRARY_PATH=/usr/local/lib make check
+ LD_LIBRARY_PATH=/usr/local/lib PGPORT=5432 make check
}
print_logs()