diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-03-19 13:25:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-03-19 14:48:25 +0000 |
commit | 7f41063841473b99c2e847c267d3b9002911a4c2 (patch) | |
tree | dc659df5ec1d7981c1b74b1ea521c907a2af9b35 | |
parent | 73922b0fdf1259247f5a3089706f769dba38d214 (diff) | |
download | aports-7f41063841473b99c2e847c267d3b9002911a4c2.tar.bz2 aports-7f41063841473b99c2e847c267d3b9002911a4c2.tar.xz |
testing/llvm6: disable tests on armhf
-rw-r--r-- | testing/llvm6/APKBUILD | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/llvm6/APKBUILD b/testing/llvm6/APKBUILD index d9bfc7dd64..67c293b71c 100644 --- a/testing/llvm6/APKBUILD +++ b/testing/llvm6/APKBUILD @@ -25,6 +25,12 @@ source="https://llvm.org/releases/$pkgver/llvm-$pkgver.src.tar.xz builddir="$srcdir/$_pkgname-$pkgver.src" options="!checkroot" +# ARMv6 has few failures in test suite that we don't care about currently and +# also it takes forever to run them on the builder. +case "$CARCH" in + armhf) options="$options !check";; +esac + # Whether is this package the default (latest) LLVM version. _default_llvm="no" |