raulcd commented on code in PR #36487:
URL: https://github.com/apache/arrow/pull/36487#discussion_r1254240112


##########
dev/tasks/java-jars/github.yml:
##########
@@ -22,8 +22,15 @@
 jobs:
 
   build-cpp-ubuntu:
-    name: Build C++ libraries Ubuntu
-    runs-on: ubuntu-latest
+    {% set arch = '${{ matrix.platform.arch }}' %}
+    name: Build C++ libraries Ubuntu {{ arch }}
+    runs-on: {{ '${{ matrix.platform.runs_on }}' }}
+    strategy:
+      fail-fast: false
+      matrix:
+        platform:
+          - { runs_on: ["ubuntu-latest"], arch: "x86_64"}
+          - { runs_on: ["self-hosted", "Linux", "arm64"], arch: "aarch_64" }
     steps:
       {{ macros.github_checkout_arrow()|indent }}
       {{ macros.github_install_archery()|indent }}

Review Comment:
   It seems the current failure on the java-jars for Linux ARM is due to it 
using the docker image for amd64:
   
https://github.com/ursacomputing/crossbow/actions/runs/5474239168/jobs/9968766885#step:7:1137



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