Skip to content

Commit

Permalink
fix: debug actions
Browse files Browse the repository at this point in the history
  • Loading branch information
karosc committed Apr 12, 2024
1 parent 5dd041f commit 3f24358
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ jobs:
CIBW_BEFORE_TEST: pip install -r {package}/test-requirements.txt
# mac needs ninja to build
CIBW_BEFORE_BUILD_MACOS: brew install ninja
CIBW_BEFORE_BUILD_LINUX: apt remove -y swig4.0 cmake
# remove system swig (cmake bug doesn't respect python venv)
CIBW_BEFORE_BUILD_LINUX: rm -f $(which swig) && rm -f $(which swig4.0)
# configure cibuildwheel to build native archs ('auto'), and some emulated ones
CIBW_ARCHS_LINUX: x86_64
CIBW_ARCHS_WINDOWS: AMD64
Expand Down

0 comments on commit 3f24358

Please sign in to comment.