From bc5003a1cd14e2be5a5630a3237854ee0efff2b7 Mon Sep 17 00:00:00 2001 From: Agriya Khetarpal <74401230+agriyakhetarpal@users.noreply.github.com> Date: Wed, 13 Mar 2024 02:02:30 +0530 Subject: [PATCH] CI: exclude macOS runners based on architecture --- .github/workflows/wheel_tests_and_release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/wheel_tests_and_release.yml b/.github/workflows/wheel_tests_and_release.yml index 7c67d44c..3f559075 100644 --- a/.github/workflows/wheel_tests_and_release.yml +++ b/.github/workflows/wheel_tests_and_release.yml @@ -106,6 +106,11 @@ jobs: os: [macos-latest, macos-14] cibw_python: ["cp39", "cp310", "cp311", "cp312"] cibw_arch: ["x86_64", "arm64"] + exclude: + - os: macos-14 + cibw_arch: "x86_64" + - os: macos-latest + cibw_arch: "arm64" steps: - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 with: