diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-02-06 08:31:06 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-02-06 08:31:06 +0000 |
commit | 9195380396649bf575bf1638d62d658091ce2527 (patch) | |
tree | f4c099be04436d2150593de70879a02c0451981d /testing/capnproto/APKBUILD | |
parent | 89c648d65d7495dd9b037ae34654d711435b87a8 (diff) | |
download | aports-9195380396649bf575bf1638d62d658091ce2527.tar.bz2 aports-9195380396649bf575bf1638d62d658091ce2527.tar.xz |
testing/capnproto: disable tests on s390x
FAIL: capnp-test
Diffstat (limited to 'testing/capnproto/APKBUILD')
-rw-r--r-- | testing/capnproto/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/capnproto/APKBUILD b/testing/capnproto/APKBUILD index 46584cd057..3b2af5a4e1 100644 --- a/testing/capnproto/APKBUILD +++ b/testing/capnproto/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=capnproto pkgver=0.7.0 -pkgrel=0 +pkgrel=1 pkgdesc="Tools for working with the Cap'n Proto format" url="https://capnproto.org/" arch="all" @@ -10,6 +10,9 @@ license="MIT" depends= makedepends="linux-headers" subpackages="$pkgname-dev" +case "$CARCH" in + s390x) options="!check";; # FAIL: capnp-test +esac source="https://capnproto.org/$pkgname-c++-$pkgver.tar.gz" builddir="$srcdir/$pkgname-c++-$pkgver" |