From 703dc7bdb99bab37f03832a198accc2730fea5c5 Mon Sep 17 00:00:00 2001 From: Pietro Abate Date: Tue, 9 Sep 2025 12:01:05 +0200 Subject: [PATCH] packages: limit parallelism of dpkg-buildpackage --- scripts/packaging/build-deb-local.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/packaging/build-deb-local.sh b/scripts/packaging/build-deb-local.sh index 5037ae54f555..9fe27f8c3d14 100755 --- a/scripts/packaging/build-deb-local.sh +++ b/scripts/packaging/build-deb-local.sh @@ -25,7 +25,8 @@ packages() { # Build the debian packages cd scripts/packaging/octez/ - DEB_BUILD_OPTIONS=noautodbgsym dpkg-buildpackage -tc -b --no-sign -sa + DEB_BUILD_OPTIONS=parallel=6 DEB_BUILD_OPTIONS=noautodbgsym \ + dpkg-buildpackage -tc -b --no-sign -sa cd - } -- GitLab