From 1260b484edda45a2bed1609cc52bac0ff1db04b3 Mon Sep 17 00:00:00 2001 From: Khyber Sen Date: Mon, 14 Jul 2025 23:53:50 -0400 Subject: [PATCH 1/2] ci: add `arch` to the matrix for clarity --- .github/workflows/ci.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01312ffc6f..52d0964be1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,11 +9,14 @@ jobs: test: strategy: matrix: - os: [ - ubuntu-latest, # x86_64 - macos-13, # x86_64 - ] - runs-on: ${{ matrix.os }} + include: + - runner: ubuntu-latest + os: Linux + arch: x86_64 + - runner: macos-13 + os: macOS + arch: x86_64 + runs-on: ${{ matrix.runner }} steps: - uses: actions/checkout@v4 - run: rustup component add rustfmt rustc-dev From 920543f4d0afe4411d925121aeac8f8e53f45b76 Mon Sep 17 00:00:00 2001 From: Khyber Sen Date: Mon, 14 Jul 2025 23:30:41 -0400 Subject: [PATCH 2/2] ci: test on aarch64 Linux --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52d0964be1..2b0a62bef4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,9 @@ jobs: - runner: macos-13 os: macOS arch: x86_64 + - runner: ubuntu-24.04-arm + os: Linux + arch: aarch64 runs-on: ${{ matrix.runner }} steps: - uses: actions/checkout@v4