Skip to content

Commit

Permalink
add audit wheel to CI/CD for visibility of many_linux conformance
Browse files Browse the repository at this point in the history
  • Loading branch information
Titus-von-Koeller committed Mar 7, 2024
1 parent 87e029b commit 82d7091
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,19 @@ jobs:
- name: Build wheel
shell: bash
run: python -m build .
- name: Show auditwheel information
if: matrix.os == 'ubuntu-latest'
run: |
pip install -q auditwheel
for whl in dist/*.whl; do
printf '%.0s=' {1..60} # separator line, same as below
echo -e "\nChecking wheel: $whl"
printf '%.0s-' {1..60}
echo
auditwheel show "$whl"
printf '%.0s-' {1..60}
echo
done
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 82d7091

Please sign in to comment.