community/helm: disable check on s390x

This commit is contained in:
psykose 2023-05-08 05:17:01 +00:00
parent 5fe3a115b2
commit 6eb7202255

View File

@ -20,7 +20,8 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/helm/helm/archive/v$pkgver.t
case "$CARCH" in case "$CARCH" in
# Disable check on 32bit systems due to upstream test "TestPlatformPrepareCommand" that does not account for these platforms # 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 esac
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}" export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"