From 4ae8549cb0be17ab8cd7143602f45820a728b95a Mon Sep 17 00:00:00 2001 From: Duy Dao Date: Sat, 10 Jan 2026 10:03:05 +0700 Subject: [PATCH 1/2] feat: add ARM target for Ubuntu 24.04 in release workflow --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52a8329..655f8f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,6 +18,8 @@ jobs: os: windows-latest - target: aarch64-pc-windows-msvc os: windows-11-arm + - target: aarch64-unknown-linux-gnu + os: ubuntu-24.04-arm runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 From 8a06e4f389379b267741fd1b96e5569f590b40ba Mon Sep 17 00:00:00 2001 From: Duy Dao Date: Sat, 10 Jan 2026 10:05:42 +0700 Subject: [PATCH 2/2] fix: add ubuntu-24.04-arm to CI workflow matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebd961e..5768de8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest, windows-11-arm] + os: [ubuntu-latest, macos-latest, windows-latest, windows-11-arm, ubuntu-24.04-arm] steps: - name: Checkout code