From 6eb720225533431d6cdf2bcecb4240c4cc3b16ae Mon Sep 17 00:00:00 2001 From: psykose Date: Mon, 8 May 2023 05:17:01 +0000 Subject: [PATCH] community/helm: disable check on s390x --- community/helm/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community/helm/APKBUILD b/community/helm/APKBUILD index 3b6f4bd5a1c..67104401f6e 100644 --- a/community/helm/APKBUILD +++ b/community/helm/APKBUILD @@ -20,7 +20,8 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/helm/helm/archive/v$pkgver.t case "$CARCH" in # Disable check on 32bit systems due to upstream test "TestPlatformPrepareCommand" that does not account for these platforms - x86|armv7|armhf) options="$options !check" ;; + # s390x fails in a loop + s390x|x86|armv7|armhf) options="$options !check" ;; esac export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"