From 66e4d5d4f93c6dc07455b56c03a1a7c64f6d9dbc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 9 Feb 2025 07:42:06 +0100 Subject: [PATCH] Running test-suite only on fast-enough architectures (amd64, arm64, i386). Signed-off-by: Daniel Baumann --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index a1ff455..fc4665d 100755 --- a/debian/rules +++ b/debian/rules @@ -23,6 +23,6 @@ override_dh_auto_configure: $(PLATFORM) override_dh_auto_test: -ifeq (,$(filter $(DEB_HOST_ARCH), mipsel mips64el )) +ifneq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 i386)) $(MAKE) -j1 check endif