Skip to content

Commit

Permalink
Further clarifications and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed May 13, 2024
1 parent 64ae6a7 commit 01a476e
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ jobs:
# The macos-13 intel runner builds wheels that cause segfaults when executed on
# macos-11, so we build on macos-12. When we drop macos-11 support, we can
# drop macos-12 from the matrix and use macos-13 instead, assuming it works.
os: [macos-12, macos-14]
include:
- os: macos-12
os_arch: macos-x86_64
- os: macos-14
os_arch: macos-arm64

steps:
- uses: actions/checkout@v4
Expand All @@ -120,7 +124,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
name: wheels-${{ matrix.os_arch }}
path: ./wheelhouse/*.whl

cross_check_macos:
Expand All @@ -130,18 +134,19 @@ jobs:
strategy:
matrix:
os: [macos-11, macos-12, macos-13]
python: ["3.8"]
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.8"
python-version: ${{ matrix.python }}

- name: Download x86_64 wheels
uses: actions/download-artifact@v4
with:
name: wheels-${{ matrix.os }} # download wheels produced by macos-12, the intel runner
name: wheels-macos-x86_64 # download wheels for x86_64
path: wheelhouse

- name: Output downloads
Expand Down

0 comments on commit 01a476e

Please sign in to comment.