Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/ci_bindings_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- ubuntu-24.04-arm
- macos-latest
- windows-latest
steps:
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/release_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
include:
- os: ubuntu-latest
classifier: linux-x86_64
- os: ubuntu-latest
- os: ubuntu-24.04-arm
classifier: linux-aarch_64
- os: windows-latest
classifier: windows-x86_64
Expand Down Expand Up @@ -73,17 +73,9 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup linux for zigbuild
if: ${{ contains(matrix.os, 'ubuntu-latest') }}
if: ${{ contains(matrix.os, 'ubuntu') }}
run: pip install cargo-zigbuild

- name: Setup linux-aarch_64
if: ${{ contains(matrix.classifier, 'linux-aarch_64') }}
run: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
# Setup for cargo
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc" >> $GITHUB_ENV

- name: Local staging
working-directory: bindings/java
shell: bash
Expand Down
Loading