We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b981e45 commit 71a1d8bCopy full SHA for 71a1d8b
1 file changed
.github/workflows/build.yml
@@ -156,12 +156,16 @@ jobs:
156
python-version: "3.10"
157
architecture: ${{ matrix.target }}
158
artifact-name: wheels-linux-${{ matrix.target }}
159
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.runs-on }}
160
secrets:
161
github-token: ${{ secrets.GITHUB_TOKEN }}
162
strategy:
163
matrix:
164
- target: [x86_64, aarch64]
+ include:
165
+ - target: x86_64
166
+ runs-on: ubuntu-latest
167
+ - target: aarch64
168
+ runs-on: ubuntu-latest-arm64
169
if: |
170
github.event_name != 'pull_request' ||
171
github.event.pull_request.author_association == 'COLLABORATOR' ||
0 commit comments