diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-03-08 14:25:22 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-08 14:25:22 -0300 |
commit | f97f24e73ab98e3f5385c72e397d5c49f0cdf30e (patch) | |
tree | 7712df9664f0fa4a67da126145774bab458b9609 /community/gitea | |
parent | f8112fa2e40482f49f28d62feb0af951bc9ca9a3 (diff) | |
download | aports-f97f24e73ab98e3f5385c72e397d5c49f0cdf30e.tar.bz2 aports-f97f24e73ab98e3f5385c72e397d5c49f0cdf30e.tar.xz |
community/gitea: disable tests on x86_64
They pass on CI
Diffstat (limited to 'community/gitea')
-rw-r--r-- | community/gitea/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/gitea/APKBUILD b/community/gitea/APKBUILD index 739ebcaab4..5699ef8e24 100644 --- a/community/gitea/APKBUILD +++ b/community/gitea/APKBUILD @@ -11,7 +11,7 @@ license="MIT" options="chmod-clean" depends="git git-lfs gnupg" makedepends="go libcap nodejs npm" -checkdepends="bash git git-lfs gnupg openssh openssh-keygen sqlite" +checkdepends="bash openssh openssh-keygen sqlite" install="$pkgname.pre-install" pkgusers="gitea" pkggroups="www-data" @@ -23,7 +23,7 @@ source="$pkgname-$pkgver.tar.gz::https://github.com/go-gitea/gitea/archive/v$pkg builddir="$srcdir/src/code.gitea.io/$pkgname" case "$CARCH" in -s390x|x86) options="!check" ;; + x86_64|s390x|x86) options="!check" ;; esac prepare() { |