diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-23 12:01:00 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-08-23 12:01:00 -0300 |
commit | 2d7c70b86c8df5ea60b943ddb95f2cbe3930d438 (patch) | |
tree | 2339cbef01ed51cdecf8f116136c147b21fdf446 /community/influxdb | |
parent | 8e25622753b00d50e4459da28b522e8fd3d2c28c (diff) | |
download | aports-2d7c70b86c8df5ea60b943ddb95f2cbe3930d438.tar.bz2 aports-2d7c70b86c8df5ea60b943ddb95f2cbe3930d438.tar.xz |
community/influxdb: disable tests on some arches
Diffstat (limited to 'community/influxdb')
-rw-r--r-- | community/influxdb/APKBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/community/influxdb/APKBUILD b/community/influxdb/APKBUILD index 6c17338b74..76e5615213 100644 --- a/community/influxdb/APKBUILD +++ b/community/influxdb/APKBUILD @@ -38,6 +38,10 @@ build() { } check() { + # Failures on these arches + case $CARCH in + s390x|arm*|ppc64le) return 0 + esac go test -short ./... } |