diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-10-08 10:07:40 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-10-08 10:07:40 +0200 |
commit | 11b2a0308520951b4e4fc17889e1631bdb355d46 (patch) | |
tree | 39de2f3dfe1b516f14bc4c3516db327ff44cb479 | |
parent | 9d5ff3ca7cf58104c440633403eeac9590cf819c (diff) | |
download | aports-11b2a0308520951b4e4fc17889e1631bdb355d46.tar.bz2 aports-11b2a0308520951b4e4fc17889e1631bdb355d46.tar.xz |
community/go: disable tests entirely on x86
Various tests fail on this arch, fixing them will be a lot of work.
-rw-r--r-- | community/go/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/community/go/APKBUILD b/community/go/APKBUILD index 299fe73371..8cc0fad5eb 100644 --- a/community/go/APKBUILD +++ b/community/go/APKBUILD @@ -17,6 +17,10 @@ source="https://golang.org/dl/go${pkgver/_/}.src.tar.gz set-external-linker.patch " +case "$CARCH" in +x86) options="!check" ;; # FIXME +esac + # secfixes: # 1.9.4-r0: # - CVE-2018-6574 |