Skip to content

Commit a36cb6c

Browse files
Update auditwheel for aarch64
1 parent e8a1f96 commit a36cb6c

2 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/scripts/auditwheel_show.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def main():
2222
print(audit_wheel_output.stdout)
2323

2424
if audit_wheel_output.stderr:
25-
print(f"**Error:**\n```{audit_wheel_output.stderr}```")
25+
print(f"**Error:**\n```\n{audit_wheel_output.stderr}\n```")
2626

2727
print("---")
2828

.github/workflows/python-package.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,16 +198,23 @@ jobs:
198198

199199
audit-wheels:
200200
needs: build-wheels
201-
runs-on: ubuntu-latest
201+
strategy:
202+
matrix:
203+
os: [ubuntu-22.04, ubuntu-22.04-arm]
204+
include:
205+
- os: ubuntu-22.04
206+
arch: x86_64
207+
- os: ubuntu-22.04-arm
208+
arch: aarch64
209+
runs-on: ${{ matrix.os }}
202210
env:
203211
PIP_DISABLE_PIP_VERSION_CHECK: 1
204212
steps:
205213
- uses: actions/checkout@v4
206-
- name: Download all wheels
214+
- name: Download wheel
207215
uses: actions/download-artifact@v4
208216
with:
209-
merge-multiple: true
210-
pattern: "bdist_wheel_*"
217+
name: bdist_wheel_${{ matrix.os }}_${{ matrix.arch }}
211218
path: wheels/
212219
- name: Set up Python
213220
uses: actions/setup-python@v5

0 commit comments

Comments
 (0)