From 046cdd2ed6cd305b06ce97ae69eb5957376fb4a8 Mon Sep 17 00:00:00 2001 From: Uwe Klotz Date: Sat, 28 Mar 2026 12:24:50 +0100 Subject: [PATCH 1/2] GitHub: Add Linux/Windows ARM64 targets to test workflow --- .github/workflows/test.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 287834d..ce05dd2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -38,6 +38,19 @@ jobs: - target: aarch64-apple-darwin runner_os: macos-26 + - target: aarch64-unknown-linux-gnu + runner_os: ubuntu-22.04-arm + - target: aarch64-unknown-linux-gnu + runner_os: ubuntu-24.04-arm + + - target: aarch64-unknown-linux-musl + runner_os: ubuntu-22.04-arm + - target: aarch64-unknown-linux-musl + runner_os: ubuntu-24.04-arm + + - target: aarch64-pc-windows-msvc + runner_os: windows-11-arm + - target: armv7-unknown-linux-gnueabihf runner_os: ubuntu-22.04 - target: armv7-unknown-linux-gnueabihf From 24dd91d34a4c531130f4622753b43f9280da6f5c Mon Sep 17 00:00:00 2001 From: Uwe Klotz Date: Mon, 30 Mar 2026 22:00:53 +0200 Subject: [PATCH 2/2] Add missing target archs --- .github/workflows/latest-dependencies.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/latest-dependencies.yaml b/.github/workflows/latest-dependencies.yaml index cea05bc..ebb0a3a 100644 --- a/.github/workflows/latest-dependencies.yaml +++ b/.github/workflows/latest-dependencies.yaml @@ -35,6 +35,13 @@ jobs: include: - target: aarch64-apple-darwin runner_os: macos-latest + - target: aarch64-unknown-linux-gnu + runner_os: ubuntu-latest + - target: aarch64-unknown-linux-musl + runner_os: ubuntu-latest + - target: aarch64-pc-windows-msvc + # There is no windows-latest-arm runner. + runner_os: windows-11-arm - target: armv7-unknown-linux-gnueabihf runner_os: ubuntu-latest - target: x86_64-apple-darwin