Skip to content

Commit

Permalink
Separate MacOS builds?
Browse files Browse the repository at this point in the history
  • Loading branch information
riedgar-ms committed May 9, 2024
1 parent 82944e6 commit 8259e62
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8259e62

Please sign in to comment.