testing/nim: disable tests on armhf

This commit is contained in:
Jakub Jirutka 2017-06-08 00:11:46 +02:00
parent 1b200391ab
commit 8db203ff76

View File

@ -17,6 +17,11 @@ source="https://nim-lang.org/download/$pkgname-$pkgver.tar.xz
nim-config-fix-paths.patch"
builddir="$srcdir/$pkgname-$pkgver"
# Don't run tests on armhf, it'd take eternity...
case "$CARCH" in
armhf) options="!check";;
esac
prepare() {
mv "$srcdir"/csources-$pkgver "$builddir"/csources
default_prepare