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 2022/07/28 13:35:13 UTC

[arrow] branch master updated: ARROW-17238: [Release] Turn off GCS testing during wheel verification (#13736)

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


The following commit(s) were added to refs/heads/master by this push:
     new c04f2573d4 ARROW-17238: [Release] Turn off GCS testing during wheel verification (#13736)
c04f2573d4 is described below

commit c04f2573d43a3cb9de1d7d8d655f423dc6f71f16
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Thu Jul 28 15:35:08 2022 +0200

    ARROW-17238: [Release] Turn off GCS testing during wheel verification (#13736)
    
    Authored-by: Krisztián Szűcs <sz...@gmail.com>
    Signed-off-by: Krisztián Szűcs <sz...@gmail.com>
---
 dev/release/verify-release-candidate.sh | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index 55cd332ff4..6127cd68d2 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -998,6 +998,8 @@ test_binary_distribution() {
 }
 
 test_linux_wheels() {
+  local check_gcs=OFF
+
   if [ "$(uname -m)" = "aarch64" ]; then
     local arch="aarch64"
   else
@@ -1014,13 +1016,13 @@ test_linux_wheels() {
       CONDA_ENV=wheel-${pyver}-${platform} PYTHON_VERSION=${pyver} maybe_setup_conda || exit 1
       VENV_ENV=wheel-${pyver}-${platform} PYTHON_VERSION=${pyver} maybe_setup_virtualenv || continue
       pip install pyarrow-${VERSION}-cp${pyver/.}-cp${python/.}-${platform}.whl
-      INSTALL_PYARROW=OFF ${ARROW_DIR}/ci/scripts/python_wheel_unix_test.sh ${ARROW_SOURCE_DIR}
+      INSTALL_PYARROW=OFF ARROW_GCS=${check_gcs} ${ARROW_DIR}/ci/scripts/python_wheel_unix_test.sh ${ARROW_SOURCE_DIR}
     done
   done
 }
 
 test_macos_wheels() {
-  local check_gcs=ON
+  local check_gcs=OFF
   local check_s3=ON
   local check_flight=ON