aboutsummaryrefslogtreecommitdiff
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.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/ci/jobs/2-test/test.sh b/contrib/ci/jobs/2-test/test.sh
index 4c4142309..3681f51cb 100755
--- a/contrib/ci/jobs/2-test/test.sh
+++ b/contrib/ci/jobs/2-test/test.sh
@@ -8,7 +8,9 @@ apt-get upgrade -yqq
./configure CFLAGS="-ggdb -O0" \
--enable-logging=verbose \
--disable-doc
-make
+
+nump=$(grep processor /proc/cpuinfo | wc -l)
+make -j$(( $nump / 2 ))
make install
sudo -u postgres /usr/lib/postgresql/15/bin/postgres -D /etc/postgresql/15/main -h localhost -p 5432 &