From c1326ba06ec3939dde18e50b6bbe836864c10dfb Mon Sep 17 00:00:00 2001 From: Micah Date: Sat, 30 Aug 2025 14:10:59 -0700 Subject: [PATCH] Add Arm64 builds to CI/Releases + build on ubuntu 22.04 (#1098) --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a69653c..3efb622d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-22.04, windows-latest, macos-latest, windows-11-arm, ubuntu-22.04-arm] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 60388221..581be871 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,15 +53,25 @@ jobs: # https://doc.rust-lang.org/rustc/platform-support.html include: - host: linux - os: ubuntu-latest + os: ubuntu-22.04 target: x86_64-unknown-linux-gnu label: linux-x86_64 + - host: linux + os: ubuntu-22.04-arm + target: aarch64-unknown-linux-gnu + label: linux-aarch64 + - host: windows os: windows-latest target: x86_64-pc-windows-msvc label: windows-x86_64 + - host: windows + os: windows-11-arm + target: aarch64-pc-windows-msvc + label: windows-aarch64 + - host: macos os: macos-latest target: x86_64-apple-darwin