[PATCH] testing/stellarium: disable tests on x86
Export this patch
---
testing/stellarium/APKBUILD | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/testing/stellarium/APKBUILD b/testing/stellarium/APKBUILD
index 6d5d54e7c6..ec0997b3ca 100644
--- a/testing/stellarium/APKBUILD
+++ b/testing/stellarium/APKBUILD
@@ -16,6 +16,10 @@ subpackages="$pkgname-doc"
source="
$pkgname-$pkgver.tar.gz::https://github.com/Stellarium/stellarium/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz
"
+if [ "$CARCH" = "x86" ]
+then
+ options="!check"
+fi
build() {
cmake \
--
2.22.1
Merged a shorter, more commonly used version of skipping tests for an arch
On Sat Aug 17, 2019 at 10:06 AM Drew DeVault wrote: