pitrou commented on a change in pull request #11543:
URL: https://github.com/apache/arrow/pull/11543#discussion_r745600906



##########
File path: docker-compose.yml
##########
@@ -993,6 +994,39 @@ services:
         /arrow/ci/scripts/java_build.sh /arrow /build &&
         /arrow/ci/scripts/python_test.sh /arrow"]
 
+  conda-python-java-integration:
+    # Usage:
+    #   docker-compose build conda
+    #   docker-compose build conda-cpp
+    #   docker-compose build conda-python
+    #   docker-compose build conda-python-java-integration
+    #   docker-compose run --rm conda-python-java-integration
+    image: ${REPO}:${ARCH}-conda-python-${PYTHON}-java-integration
+    build:
+      context: .
+      dockerfile: ci/docker/conda-python-jpype.dockerfile
+      cache_from:
+        - ${REPO}:${ARCH}-conda-python-${PYTHON}-java-integration
+      args:
+        repo: ${REPO}
+        arch: ${ARCH}
+        python: ${PYTHON}
+        llvm: ${LLVM}
+    shm_size: *shm-size
+    environment:
+      <<: *ccache
+      ARROW_JAVA_CDATA: "ON"

Review comment:
       To minimize build times, one can disable unnecessary C++ components:
   
   ```suggestion
         ARROW_DATASET: "OFF"
         ARROW_FLIGHT: "OFF"
         ARROW_GANDIVA: "OFF"
         ARROW_JAVA_CDATA: "ON"
         ARROW_ORC: "OFF"
         ARROW_PARQUET: "OFF"
         ARROW_PLASMA: "OFF"
   ```




-- 
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]


Reply via email to