From f6bf872d8999061a4f7b21fa0246ea5a45c5eead Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 6 Mar 2025 11:59:04 +0100 Subject: [PATCH 1/2] GitHub Actions: Add Ubuntu on ARM to the testing [`runner.arch`](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#runner-context) will be `ARM64` on both `macos-latest` and `ubuntu-24.04-arm` * https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/store-information-in-variables#detecting-the-operating-system * https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81c22d94..d4fa646b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: os: - macos-latest - ubuntu-20.04 + - ubuntu-24.04-arm - windows-latest host: - x64 From 6fa9a0d0e73921fac6a5c9736696a567946b7d48 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 6 Mar 2025 16:57:40 +0100 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4fa646b..46430bba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,8 +20,8 @@ jobs: matrix: os: - macos-latest - - ubuntu-20.04 - - ubuntu-24.04-arm + - ubuntu-22.04 + - ubuntu-22.04-arm - windows-latest host: - x64