diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2019-08-18 19:10:46 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2019-08-18 19:12:32 +0200 |
commit | 56f6070929abff7755daae8a6347bf2d1ff9311e (patch) | |
tree | 02088434b564d1ae0b9dc401f5f70f87a0e6e401 /community/gitea | |
parent | fd473add1a03d87d1a79b2f1376d261ba3828678 (diff) | |
download | aports-56f6070929abff7755daae8a6347bf2d1ff9311e.tar.bz2 aports-56f6070929abff7755daae8a6347bf2d1ff9311e.tar.xz |
community/gitea: disable check on armhf
Tests are aborted for some reason, currently don't have access to a
hardware platform using this architecture. Disabling for now.
Diffstat (limited to 'community/gitea')
-rw-r--r-- | community/gitea/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/community/gitea/APKBUILD b/community/gitea/APKBUILD index 5dfa4c9d1c..bae09d2c3d 100644 --- a/community/gitea/APKBUILD +++ b/community/gitea/APKBUILD @@ -22,6 +22,10 @@ source="${pkgname}-${pkgver}.tar.gz::https://github.com/go-gitea/$pkgname/archiv " builddir="$srcdir/src/code.gitea.io/$pkgname" +case "$CARCH" in +armhf) options="!check" ;; # FIXME +esac + prepare() { mkdir -p ${builddir%/*} mv "$srcdir"/$pkgname-$pkgver "$builddir"/ |