We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e13bd commit d0639b8Copy full SHA for d0639b8
1 file changed
.github/workflows/CI.yml
@@ -110,12 +110,12 @@ jobs:
110
name: wheels-musllinux-${{ matrix.platform.target }}
111
path: dist
112
- name: pytest
113
- if: ${{ matrix.platform.target == 'x86_64' }}
+ if: ${{ matrix.platform.target != 'x86' }}
114
uses: uraimo/run-on-arch-action@v2
115
env:
116
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: 1
117
with:
118
- arch: x86_64
+ arch: ${{ matrix.platform.target }}
119
distro: alpine_latest
120
githubToken: ${{ github.token }}
121
install: |
@@ -172,8 +172,6 @@ jobs:
172
strategy:
173
matrix:
174
platform:
175
- - runner: macos-13
176
- target: x86_64
177
- runner: macos-14
178
target: aarch64
179
steps:
0 commit comments