From 8259e625bf0c6ec40ed7cf185563a280b46412c7 Mon Sep 17 00:00:00 2001 From: "Richard Edgar (Microsoft)" Date: Thu, 9 May 2024 14:35:10 -0400 Subject: [PATCH] Separate MacOS builds? --- .github/workflows/pypi_upload.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pypi_upload.yml b/.github/workflows/pypi_upload.yml index 0f5b5b955..9e7a00138 100644 --- a/.github/workflows/pypi_upload.yml +++ b/.github/workflows/pypi_upload.yml @@ -20,15 +20,17 @@ jobs: - uses: actions/checkout@v3 - name: Install cibuildwheel # Nb. keep cibuildwheel version pin consistent with job below - run: pipx install cibuildwheel==2.14.0 + run: pipx install cibuildwheel==2.17.0 - id: set-matrix run: | MATRIX=$( { cibuildwheel --print-build-identifiers --platform linux --archs x86_64 \ | jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \ - && cibuildwheel --print-build-identifiers --platform macos --archs x86_64,arm64 \ + && cibuildwheel --print-build-identifiers --platform macos --archs x86_64 \ | jq -nRc '{"only": inputs, "os": "macos-12"}' \ + && cibuildwheel --print-build-identifiers --platform macos --archs arm64 \ + | jq -nRc '{"only": inputs, "os": "macos-latest"}' \ # && cibuildwheel --print-build-identifiers --platform windows \ # | jq -nRc '{"only": inputs, "os": "windows-latest"}' } | jq -sc