Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-531: [Release] Add support for .jar for arm64 Linux #532

Merged
merged 2 commits into from
Jan 18, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/workflows/rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
jni-linux:
name: JNI ${{ matrix.platform.runs_on }} ${{ matrix.platform.arch }}
runs-on: ${{ matrix.platform.runs_on }}
timeout-minutes: 120
needs:
- source
strategy:
Expand All @@ -88,6 +89,9 @@ jobs:
- runs_on: ubuntu-latest
arch: "x86_64"
archery_arch: "amd64"
- runs_on: ubuntu-24.04-arm
arch: "aarch_64"
archery_arch: "arm64v8"
env:
# architecture name used for archery build
ARCH: ${{ matrix.platform.archery_arch }}
Expand Down Expand Up @@ -144,6 +148,7 @@ jobs:
jni-macos:
name: JNI ${{ matrix.platform.runs_on }} ${{ matrix.platform.arch }}
runs-on: ${{ matrix.platform.runs_on }}
timeout-minutes: 45
needs:
- source
strategy:
Expand Down Expand Up @@ -262,6 +267,7 @@ jobs:
jni-windows:
name: JNI ${{ matrix.platform.runs_on }} ${{ matrix.platform.arch }}
runs-on: ${{ matrix.platform.runs_on }}
timeout-minutes: 45
needs:
- source
strategy:
Expand Down Expand Up @@ -346,7 +352,7 @@ jobs:
mv artifacts/*/*.tar.gz .
tar -xf apache-arrow-java-*.tar.gz --strip-components=1
tar -xvzf jni-linux-x86_64.tar.gz
# tar -xvzf jni-linux-aarch_64.tar.gz
tar -xvzf jni-linux-aarch_64.tar.gz
tar -xvzf jni-macos-x86_64.tar.gz
tar -xvzf jni-macos-aarch_64.tar.gz
tar -xvzf jni-windows-x86_64.tar.gz
Expand All @@ -359,10 +365,10 @@ jobs:
test -f jni/arrow_orc_jni/x86_64/libarrow_orc_jni.so
test -f jni/gandiva_jni/x86_64/libgandiva_jni.so

# test -f jni/arrow_cdata_jni/aarch_64/libarrow_cdata_jni.so
# test -f jni/arrow_dataset_jni/aarch_64/libarrow_dataset_jni.so
# test -f jni/arrow_orc_jni/aarch_64/libarrow_orc_jni.so
# test -f jni/gandiva_jni/aarch_64/libgandiva_jni.so
test -f jni/arrow_cdata_jni/aarch_64/libarrow_cdata_jni.so
test -f jni/arrow_dataset_jni/aarch_64/libarrow_dataset_jni.so
test -f jni/arrow_orc_jni/aarch_64/libarrow_orc_jni.so
test -f jni/gandiva_jni/aarch_64/libgandiva_jni.so

test -f jni/arrow_cdata_jni/x86_64/libarrow_cdata_jni.dylib
test -f jni/arrow_dataset_jni/x86_64/libarrow_dataset_jni.dylib
Expand Down
Loading