diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2017-04-25 15:05:57 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-04-25 15:06:52 +0200 |
commit | ba7e0d18aced2857ebe6fc68eabbf95d9cf0e6e6 (patch) | |
tree | 0544ed9f000fe1930a0a1287ea026acf648684c6 /community/llvm3.9 | |
parent | 431e70edcbe28d57008805e5409f5aa9079e25d9 (diff) | |
download | aports-ba7e0d18aced2857ebe6fc68eabbf95d9cf0e6e6.tar.bz2 aports-ba7e0d18aced2857ebe6fc68eabbf95d9cf0e6e6.tar.xz |
community/llvm3.9: disable check() on armhf
It takes tooo long to run them on the armhf builder.
Diffstat (limited to 'community/llvm3.9')
-rw-r--r-- | community/llvm3.9/APKBUILD | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/community/llvm3.9/APKBUILD b/community/llvm3.9/APKBUILD index f925ecbb96..8e18ff4ec3 100644 --- a/community/llvm3.9/APKBUILD +++ b/community/llvm3.9/APKBUILD @@ -28,6 +28,12 @@ source="http://llvm.org/releases/$pkgver/llvm-$pkgver.src.tar.xz " builddir="$srcdir/$_pkgname-$pkgver.src" +# ARM 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 + arm*) options="!check";; +esac + # NOTE: It seems that there's no (sane) way how to change includedir, sharedir # etc. separately, just the CMAKE_INSTALL_PREFIX. Standard CMake variables and # even LLVM-specific variables, that are related to these paths, actually @@ -114,11 +120,7 @@ build() { check() { cd "$builddir"/build - # ARM has few failures in test suite that we don't care about currently. - case "$CARCH" in - arm*) make check-llvm || true;; - *) make check-llvm;; - esac + make check-llvm } package() { |