From 643cef5c26e1b7086f6d963337c769f1adcedd12 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 9 Apr 2021 00:17:05 +0200 Subject: [PATCH] main/gpodder-adaptive: armv7: disable tests (MR 2104) Temporarily disable tests for armv7, as py3-podcastparser and probably others are not yet rebuilt against python 3.9 in Alpine edge. [ci:skip-vercheck] --- main/gpodder-adaptive/APKBUILD | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/main/gpodder-adaptive/APKBUILD b/main/gpodder-adaptive/APKBUILD index 5c1a9a378..6d604ef6c 100644 --- a/main/gpodder-adaptive/APKBUILD +++ b/main/gpodder-adaptive/APKBUILD @@ -14,6 +14,12 @@ subpackages="$pkgname-doc" source="https://github.com/tpikonen/gpodder/archive/$_commit.tar.gz" builddir="$srcdir/gpodder-$_commit" +# Temporarily disable tests for armv7, as py3-podcastparser and probably others +# are not yet rebuilt against python 3.9 in Alpine edge (2021-04-09). +if [ "$CARCH" = "armv7" ]; then + options="$options !check" +fi + check() { make unittest }