From fe44e87afd2f604bec69fd48b4967b55688c8ec5 Mon Sep 17 00:00:00 2001
From: psykose <alice@ayaya.dev>
Date: Sun, 5 Jun 2022 16:53:42 +0000
Subject: [PATCH] testing/b3sum: disable check on armhf

---
 testing/b3sum/APKBUILD | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/testing/b3sum/APKBUILD b/testing/b3sum/APKBUILD
index 93f6e7e846b9..ea8e299b2ba8 100644
--- a/testing/b3sum/APKBUILD
+++ b/testing/b3sum/APKBUILD
@@ -11,7 +11,13 @@ makedepends="cargo"
 source="b3sum-$pkgver.tar.gz::https://crates.io/api/v1/crates/b3sum/$pkgver/download"
 
 case "$CARCH" in
-	armv7) _features="neon" ;;
+armhf)
+	# hang forever, probably due to non-native hardware
+	options="$options !check"
+	;;
+armv7)
+	_features="neon"
+	;;
 esac
 
 build() {
-- 
GitLab