Skip to content
Snippets Groups Projects
Commit ee8b4a8c authored by Jakub Jirutka's avatar Jakub Jirutka :flag_ua:
Browse files

community/llvm3.7: disable check() on armhf

It takes tooo long to run them on the armhf builder.
parent ba7e0d18
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,12 @@ source="http://llvm.org/releases/$pkgver/llvm-$pkgver.src.tar.xz ...@@ -25,6 +25,12 @@ source="http://llvm.org/releases/$pkgver/llvm-$pkgver.src.tar.xz
" "
builddir="$srcdir/$_pkgname-$pkgver.src" 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 # 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 # etc. separately, just the CMAKE_INSTALL_PREFIX. Standard CMake variables and
# even LLVM-specific variables, that are related to these paths, actually # even LLVM-specific variables, that are related to these paths, actually
...@@ -106,11 +112,7 @@ build() { ...@@ -106,11 +112,7 @@ build() {
check() { check() {
cd "$builddir"/build cd "$builddir"/build
# ARM has few failures in test suite that we don't care about currently. make check-llvm
case "$CARCH" in
arm*) make check-llvm || true;;
*) make check-llvm;;
esac
} }
package() { package() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment