You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2020/04/20 19:21:54 UTC

[arrow] 12/28: ARROW-8502: [Release][APT][Yum] Ignore all Linux packages for arm64v8

This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit d3d99c5820a18c34d5279b5beef29699507ed314
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Sat Apr 18 12:03:24 2020 +0900

    ARROW-8502: [Release][APT][Yum] Ignore all Linux packages for arm64v8
    
    Because we don't build them for 0.17.0 RC0.
    
    Closes #6973 from kou/release-verify-rc-binaries-ignore-arm
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 dev/release/verify-release-candidate.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index 7319947..7961f2d 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -147,6 +147,8 @@ test_apt() {
     # We can't build some arm64 binaries by Crossbow for now.
     if [ "${target}" = "arm64v8/debian:stretch" ]; then continue; fi
     if [ "${target}" = "arm64v8/debian:buster" ]; then continue; fi
+    if [ "${target}" = "arm64v8/ubuntu:xenial" ]; then continue; fi
+    if [ "${target}" = "arm64v8/ubuntu:bionic" ]; then continue; fi
     if [ "${target}" = "arm64v8/ubuntu:eoan" ]; then continue; fi
     if [ "${target}" = "arm64v8/ubuntu:focal" ]; then continue; fi
     case "${target}" in
@@ -177,6 +179,7 @@ test_yum() {
                 "centos:8" \
                 "arm64v8/centos:8"; do
     # We can't build some arm64 binaries by Crossbow for now.
+    if [ "${target}" = "arm64v8/centos:7" ]; then continue; fi
     if [ "${target}" = "arm64v8/centos:8" ]; then continue; fi
     case "${target}" in
       arm64v8/*)