Skip to content

Commit

Permalink
auditwheel
Browse files Browse the repository at this point in the history
  • Loading branch information
Isotr0py committed Sep 30, 2023
1 parent 2213c75 commit 9f4e58a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ jobs:
# before-script-linux: |
# yum install -y cmake clang doxygen extra-cmake-modules ninja-build

- name: Fix wheels with auditwheel
run: |
pip install auditwheel
for wheel in *manylinux*.whl; do
echo "Processing $wheel"
auditwheel repair "$wheel"
done
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -103,7 +111,7 @@ jobs:
- name: Fix wheels with delvewheel
run: |
pip install delvewheel
Get-ChildItem ${{ github.workspace }}/wheels/*.whl | ForEach-Object -Process {delvewheel repair $PSItem -w dist}
Get-ChildItem ${{ github.workspace }}/wheels/*win_amd64.whl | ForEach-Object -Process {delvewheel repair $PSItem -w dist}
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 9f4e58a

Please sign in to comment.