From 37d6eb5161033721b9b060c85fd8cb5a60c47b94 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Wed, 15 May 2024 17:39:35 -0300 Subject: [PATCH] Add CI run for aarch64-darwin --- .github/workflows/ci.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9e5fee..2532346 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,7 @@ jobs: run: git status --porcelain=v1 - name: Ensure no staged changes run: git diff --exit-code + run-test-suite: name: Run test suite strategy: @@ -36,6 +37,7 @@ jobs: - ubuntu-latest - nscloud-ubuntu-22.04-amd64-4x16 - namespace-profile-default-arm64 + - runs-on: ${{ matrix.runner }} permissions: contents: read @@ -116,9 +118,15 @@ jobs: duration: 5m authorized-users: grahamc - run-x86_64-darwin: - name: Run x86_64 Darwin - runs-on: macos-12 + run-darwin: + strategy: + matrix: + runner: + # x86_64-darwin + - macos-12 + # aarch64-darwin + - macos-latest-xlarge + runs-on: ${{ matrix.runner }} permissions: contents: read id-token: write