From faabac1a3b5394ae12626c333dd793a696bed6f7 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 5 Dec 2024 07:49:42 +0100 Subject: [PATCH] macos-13 is X64, others are ARM64 --- .github/workflows/macOS_on_demand.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/macOS_on_demand.yml b/.github/workflows/macOS_on_demand.yml index 76f4b33..503f07d 100644 --- a/.github/workflows/macOS_on_demand.yml +++ b/.github/workflows/macOS_on_demand.yml @@ -8,14 +8,12 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-15, macos-14, macos-13, macos-15-large, macos-14-large, macos-13-large, macos-latest] - # arch: [arm64, x64] + os: [macos-15, macos-14, macos-13, macos-latest] + # arch: [ARM64, X64] # macos-13 is X64, others are ARM64 runs-on: ${{ matrix.os }} steps: - - name: ${{ runner.os }} on ${{ runner.arch }} - run: | - echo "${{ runner.os }} on ${{ runner.arch }}" - echo ${{ runner.os }} on ${{ runner.arch }} + - name: ${{ runner.os }} (${{ matrix.os }}) on ${{ runner.arch }} + run: echo ${{ runner.os }} (${{ matrix.os }}) on ${{ runner.arch }} - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: