Skip to content

Commit

Permalink
Remove auto-generated Python .so and .o files on Linux runner
Browse files Browse the repository at this point in the history
  • Loading branch information
makaimann committed Feb 18, 2025
1 parent bda99ea commit 9b61842
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ jobs:
env:
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos-target }}

- name: Clean up existing .so files on Linux
if: runner.os == 'Linux'
run: |
find ./build/python -name "*.so" -delete
find ./build/python -name "*.o" -delete
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
with:
Expand Down

0 comments on commit 9b61842

Please sign in to comment.