Skip to content

build: arm64 binaries #1518

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Build binaries for GitHub release

on:
release:
types: [created, edited, published]
types: [edited, published]

permissions: read-all

Expand All @@ -16,14 +16,20 @@ jobs:
strategy:
fail-fast: false
matrix:
build: [linux-musl, macos, win-msvc]
build: [linux-musl-x64, linux-musl-arm64, macos-x64, macos-arm64, win-msvc]
include:
- build: linux-musl
- build: linux-musl-x64
os: ubuntu-24.04
target: x86_64-unknown-linux-musl
- build: macos
- build: linux-musl-arm64
os: ubuntu-24.04-arm
target: aarch64-unknown-linux-musl
- build: macos-x64
os: macos-13
target: x86_64-apple-darwin
- build: macos-arm64
os: macos-15
target: aarch64-apple-darwin
- build: win-msvc
os: windows-2022
target: x86_64-pc-windows-msvc
Expand All @@ -34,7 +40,7 @@ jobs:
uses: actions/checkout@v4

- name: Install packages (Ubuntu)
if: matrix.os == 'ubuntu-24.04'
if: startsWith(matrix.os, 'ubuntu-24.04')
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends xz-utils liblz4-tool musl-tools
Expand Down
Loading