diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2020-03-23 18:31:51 +0000 |
---|---|---|
committer | Ariadne Conill <ariadne@dereferenced.org> | 2020-03-23 18:33:24 +0000 |
commit | bc5bdeaee9133ca6c5ef9268c842fc09e5bb573e (patch) | |
tree | 3511c14c6f2303acb1ac79bed7e398e451a57ddb | |
parent | 4266a308a2f322041dbca48e69b5d6ea90ba5e11 (diff) | |
download | aports-bc5bdeaee9133ca6c5ef9268c842fc09e5bb573e.tar.bz2 aports-bc5bdeaee9133ca6c5ef9268c842fc09e5bb573e.tar.xz |
main/libseccomp: disable tests on mips64
Our builder runs on a Cavium-supplied kernel since Octeon3 drivers are not
fully upstreamed. Accordingly, the tests fail because the kernel is old
(4.9.x).
-rw-r--r-- | main/libseccomp/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/libseccomp/APKBUILD b/main/libseccomp/APKBUILD index 947e145ff3..164fc0c214 100644 --- a/main/libseccomp/APKBUILD +++ b/main/libseccomp/APKBUILD @@ -17,6 +17,10 @@ source="https://github.com/seccomp/libseccomp/releases/download/v$pkgver/libsecc fix-performace-regression.patch " +case "$CARCH" in + mips*) options="$options !check";; +esac + # secfixes: # 2.4.0-r0: # - CVE-2019-9893 |