Skip to content

Commit

Permalink
- experiment: Make the macOS arm64 wheel the default
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed May 28, 2024
1 parent 32fde77 commit 82e83ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,10 @@ jobs:
startsWith(runner.os, 'Mac')
uses: actions/upload-artifact@v4
with:
name: zope.interface-${{ runner.os }}-${{ matrix.python-version }}.whl
# The x86_64 wheel is uploaded with a different name just so it can be
# manually downloaded when desired. The wheel itself *cannot* be tested
# on the GHA runner, which uses arm64 architecture.
name: zope.interface-${{ runner.os }}-${{ matrix.python-version }}-x86_64.whl
path: dist/*x86_64.whl
- name: Upload zope.interface wheel (macOS arm64)
if: >
Expand All @@ -239,10 +242,7 @@ jobs:
|| matrix.python-version == '3.7')
uses: actions/upload-artifact@v4
with:
# The arm64 wheel is uploaded with a different name just so it can be
# manually downloaded when desired. The wheel itself *cannot* be tested
# on the GHA runner, which uses x86_64 architecture.
name: zope.interface-${{ runner.os }}-${{ matrix.python-version }}-arm64.whl
name: zope.interface-${{ runner.os }}-${{ matrix.python-version }}.whl
path: dist/*arm64.whl
- name: Upload zope.interface wheel (all other platforms)
if: >
Expand Down

0 comments on commit 82e83ff

Please sign in to comment.