diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-09-13 12:38:22 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-09-13 12:38:22 -0300 |
commit | 13e7d84aa09530922190e6c6cb605ff5b77c48c8 (patch) | |
tree | 4635a5d53a889fdfe9d7fcca0f404a95de606bff /community/hugo | |
parent | f6e8587d0e7897fc7f7e4c081920afc128c697a1 (diff) | |
download | aports-13e7d84aa09530922190e6c6cb605ff5b77c48c8.tar.bz2 aports-13e7d84aa09530922190e6c6cb605ff5b77c48c8.tar.xz |
community/hugo: disable tests on aarch64 and ppc64le
Diffstat (limited to 'community/hugo')
-rw-r--r-- | community/hugo/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/community/hugo/APKBUILD b/community/hugo/APKBUILD index d1025f1bb9..5d047f0163 100644 --- a/community/hugo/APKBUILD +++ b/community/hugo/APKBUILD @@ -21,6 +21,10 @@ build() { } check() { + # image_test.so:548 fails + case "$CARCH" in + aarch64|ppc64le) return 0 ;; + esac go test ./... } |