We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4963929 commit e44ef57Copy full SHA for e44ef57
1 file changed
.github/workflows/build_wheels.yml
@@ -27,10 +27,11 @@ jobs:
27
# macOS: build both Intel and Apple Silicon
28
CIBW_ARCHS_MACOS: "x86_64 arm64"
29
CIBW_ARCHS_LINUX: "x86_64"
30
- # Build dependencies (pybind11 is needed at compile time)
31
CIBW_BUILD_FRONTEND: "pip"
32
# Test the built wheel
33
CIBW_TEST_COMMAND: "python -c \"import SpatialQueryEliasFanoDB; print('C++ extension OK')\""
+ # Skip testing cross-compiled wheels (x86_64 on arm64 macOS runner)
34
+ CIBW_TEST_SKIP: "*-macosx_x86_64"
35
36
- uses: actions/upload-artifact@v4
37
with:
0 commit comments