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

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


The following commit(s) were added to refs/heads/master by this push:
     new cdcc4dc  ARROW-8502: [Release][APT][Yum] Ignore all Linux packages for 
arm64v8
cdcc4dc is described below

commit cdcc4dc482a221e5c33d6d21d4a3249f66aa902d
Author: Sutou Kouhei <[email protected]>
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 <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 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/*)

Reply via email to