We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 314ad62 commit a1aab4fCopy full SHA for a1aab4f
1 file changed
.github/workflows/build-test.yml
@@ -75,6 +75,9 @@ jobs:
75
submodules: recursive
76
- name: Build wheels
77
uses: pypa/cibuildwheel@v2.22.0
78
+ with:
79
+ package-dir: ./condreg-py-interface
80
+ output-dir: wheelhouse
81
env:
82
# Configure cibuildwheel
83
CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* cp312-*
@@ -89,8 +92,10 @@ jobs:
89
92
C:\vcpkg\vcpkg install eigen3:x64-windows &&
90
93
set EIGEN_INCLUDE_DIR=C:\vcpkg\installed\x64-windows\include\eigen3
91
94
- # Build the C++ library first
- CIBW_BEFORE_BUILD: python build_cpp.py
95
+ # Build the C++ library first - run from the package directory
96
+ CIBW_BEFORE_BUILD: |
97
+ cd {package} &&
98
+ python build_cpp.py
99
- uses: actions/upload-artifact@v4
100
with:
101
name: wheels-${{ matrix.os }}
0 commit comments