summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGard Spreemann <gspr@nonempty.org>2021-12-01 16:40:41 +0100
committerGard Spreemann <gspr@nonempty.org>2021-12-01 16:43:52 +0100
commit76abe92da84789061bf3ff2defb1d6d681bd0945 (patch)
tree17cf83eea41c219f15bf36d390bbc972f7169a43
parentddbc9272c0405d467c8e4ab871e16f7c97fd1a06 (diff)
Temporarily disable build-time tests on mipsel and mips64eldebian/0.8.2-3
One test fails on these architectures, but the program seems functional.
-rw-r--r--debian/changelog7
-rwxr-xr-xdebian/rules5
2 files changed, 12 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 85e741f..bc006ae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+waypipe (0.8.2-3) unstable; urgency=medium
+
+ * Temporarily disable build-time tests on mipsel and mips64el. One test
+ fails on these architectures, but the program seems functional.
+
+ -- Gard Spreemann <gspr@nonempty.org> Wed, 01 Dec 2021 16:39:26 +0100
+
waypipe (0.8.2-2) unstable; urgency=medium
* Correct typo in architecture variables so as to actually build with
diff --git a/debian/rules b/debian/rules
index bff520c..9cb6328 100755
--- a/debian/rules
+++ b/debian/rules
@@ -15,3 +15,8 @@ else ifeq ($(DEB_HOST_ARCH), arm64)
else
dh_auto_configure -- -Dwith_avx2=false -Dwith_avx512f=false -Dwith_neon_opts=false -Dwith_sse3=false
endif
+
+ifneq (, $(filter $(DEB_HOST_ARCH),mipsel mips64el))
+override_dh_auto_test:
+ @echo "Skipping tests on $(DEB_HOST_ARCH)."
+endif