From b408d696301465a0f665dc23b3557ef3e4f90c4d Mon Sep 17 00:00:00 2001 From: Arto Jantunen Date: Wed, 3 Apr 2024 09:52:13 +0300 Subject: [PATCH] d/rules: Enable running tests concurrently --- debian/rules | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/rules b/debian/rules index 38965316f3d..b7ab47c912f 100755 --- a/debian/rules +++ b/debian/rules @@ -362,10 +362,10 @@ override_dh_auto_build: debian/stamp-configured override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) - $(MAKE) -C debian/build-lucid check - $(MAKE) -C debian/build-nox check - $(MAKE) -C debian/build-gtk check - $(MAKE) -C debian/build-pgtk check + $(MAKE) -C debian/build-lucid -j $(joblimit) check + $(MAKE) -C debian/build-nox -j $(joblimit) check + $(MAKE) -C debian/build-gtk -j $(joblimit) check + $(MAKE) -C debian/build-pgtk -j $(joblimit) check endif ifdef deb_native_compilation_enabled -- 2.30.2