coryan commented on a change in pull request #11409:
URL: https://github.com/apache/arrow/pull/11409#discussion_r728382418
##########
File path: ci/scripts/install_gcs_testbench.sh
##########
@@ -19,12 +19,18 @@
set -e
-if [ "$#" -ne 1 ]; then
- echo "Usage: $0 <storage-testbench version>"
+if [ "$#" -ne 2 ]; then
+ echo "Usage: $0 <arch> <storage-testbench version>"
exit 1
fi
-version=$1
+arch=$1
+if [ "${arch}" != "amd64" ]; then
+ echo "GCS testbench won't install on non-x86 architecture"
Review comment:
Ah, looks like the CI builds don't have the necessary dependencies to
build some of the dependencies of the testbench.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]