diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-22 21:46:34 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-22 21:46:34 +0000 |
commit | 580bff76c129170dd6484e3eb893d285fc5c8a24 (patch) | |
tree | 0a892677e70ccf26b8be6b4984bee179d2a764dc /community/lua-http | |
parent | 5f591e88fab9cbf656d1686a6e9cb634cfa30315 (diff) | |
download | aports-580bff76c129170dd6484e3eb893d285fc5c8a24.tar.bz2 aports-580bff76c129170dd6484e3eb893d285fc5c8a24.tar.xz |
community/lua-http: disable check for ppc64le
the check hangs so disable for now.
https://github.com/daurnimator/lua-http/issues/87
Diffstat (limited to 'community/lua-http')
-rw-r--r-- | community/lua-http/APKBUILD | 5 |
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" case "$CARCH" in # luajit is not available for s390x s390x) _luajit="";; - # XXX: Some tests fail with "Address not available". - aarch64 | armhf) options="!check";; + # FIXME: Some tests fail with "Address not available". + # and ppc64le hangs + aarch64 | armhf | ppc64le) options="!check";; *) checkdepends="$checkdepends luajit" _luajit="jit";; esac |