aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2017-11-22 21:46:34 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2017-11-22 21:46:34 +0000
commit580bff76c129170dd6484e3eb893d285fc5c8a24 (patch)
tree0a892677e70ccf26b8be6b4984bee179d2a764dc
parent5f591e88fab9cbf656d1686a6e9cb634cfa30315 (diff)
downloadalpine_aports-580bff76c129170dd6484e3eb893d285fc5c8a24.tar.bz2
alpine_aports-580bff76c129170dd6484e3eb893d285fc5c8a24.tar.xz
alpine_aports-580bff76c129170dd6484e3eb893d285fc5c8a24.zip
community/lua-http: disable check for ppc64le
the check hangs so disable for now. https://github.com/daurnimator/lua-http/issues/87
-rw-r--r--community/lua-http/APKBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/community/lua-http/APKBUILD b/community/lua-http/APKBUILD
index cce8564fd5..b46effe6c5 100644
--- a/community/lua-http/APKBUILD
+++ b/community/lua-http/APKBUILD
@@ -17,8 +17,9 @@ builddir="$srcdir/$pkgname-$pkgver"
17case "$CARCH" in 17case "$CARCH" in
18 # luajit is not available for s390x 18 # luajit is not available for s390x
19 s390x) _luajit="";; 19 s390x) _luajit="";;
20 # XXX: Some tests fail with "Address not available". 20 # FIXME: Some tests fail with "Address not available".
21 aarch64 | armhf) options="!check";; 21 # and ppc64le hangs
22 aarch64 | armhf | ppc64le) options="!check";;
22 *) checkdepends="$checkdepends luajit" _luajit="jit";; 23 *) checkdepends="$checkdepends luajit" _luajit="jit";;
23esac 24esac
24 25