You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/08/04 10:56:16 UTC

[GitHub] [arrow] kszucs commented on a change in pull request #10865: ARROW-3699: [C++] Dockerfile for testing 32-bit C++ build

kszucs commented on a change in pull request #10865:
URL: https://github.com/apache/arrow/pull/10865#discussion_r682509076



##########
File path: ci/docker/debian-10-cpp.dockerfile
##########
@@ -73,7 +73,9 @@ RUN apt-get update -y -q && \
 
 COPY ci/scripts/install_minio.sh \
      /arrow/ci/scripts/
-RUN /arrow/ci/scripts/install_minio.sh ${arch} linux latest /usr/local
+RUN if [ "${arch}" != "i386" ]; then \
+      /arrow/ci/scripts/install_minio.sh ${arch} linux latest /usr/local; \

Review comment:
       Can't find a binary for i386 here: https://dl.min.io/server/minio/release/
   
   Possibly need to set `ARROW_S3=OFF` as well.




-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org