summaryrefslogtreecommitdiff
path: root/contrib/ci/jobs/2-test/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ci/jobs/2-test/test.sh')
-rwxr-xr-xcontrib/ci/jobs/2-test/test.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/contrib/ci/jobs/2-test/test.sh b/contrib/ci/jobs/2-test/test.sh
index 4c414230..121c12f8 100755
--- a/contrib/ci/jobs/2-test/test.sh
+++ b/contrib/ci/jobs/2-test/test.sh
@@ -8,8 +8,7 @@ apt-get upgrade -yqq
./configure CFLAGS="-ggdb -O0" \
--enable-logging=verbose \
--disable-doc
-make
-make install
+make -j install
sudo -u postgres /usr/lib/postgresql/15/bin/postgres -D /etc/postgresql/15/main -h localhost -p 5432 &
sleep 10
@@ -19,7 +18,7 @@ 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 PGPORT=5432 make check
+ LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib/taler PGPORT=5432 make check
}
print_logs()