From 3db301705b23119dc62664c3cf8c8570e7b636ab Mon Sep 17 00:00:00 2001 From: Paul Marillonnet Date: Mon, 11 Dec 2023 16:55:33 +0100 Subject: [PATCH] CI: let (now more powerful) jenkins run more concurrent threads (#84578) --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4a7f4e325..4b94419c1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ pipeline { sh """ python3 -m venv ${env.TMPDIR}/venv/ ${env.TMPDIR}/venv/bin/pip install "tox" -NUMPROCESSES=6 \ +NUMPROCESSES=12 \ PGPORT=`python3 -c 'import struct; import socket; s=socket.socket(); s.setsockopt(socket.SOL_SOCKET, socket.SO_LINGER, struct.pack("ii", 1, 0)); s.bind(("", 0)); print(s.getsockname()[1]); s.close()'` pg_virtualenv -o fsync=off ${env.TMPDIR}/venv/bin/tox run --recreate ${env.TOXARGS}""" } post {