We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c96241f commit fa02cc4Copy full SHA for fa02cc4
.github/workflows/build.yml
@@ -68,10 +68,6 @@ jobs:
68
69
- name: Build wheels
70
env:
71
- CIBW_CONFIG_SETTINGS: >
72
- --global-option=build_ext
73
- --global-option="-I /project/extern/include"
74
- --global-option="-L /project/extern/lib"
75
CIBW_SKIP: "pp* *-musllinux*"
76
CIBW_BEFORE_BUILD: >
77
python -c "import utils; utils.GeosLibrary('${{ env.GEO_VERSION }}').build('extern', njobs=16)"
@@ -84,6 +80,8 @@ jobs:
84
80
--cov-report=term --ignore=dist --ignore=build
85
81
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*"
86
82
run: |
83
+ export CFLAGS="-I/project/extern/include"
+ export LDFLAGS="-L/project/extern/lib"
87
cd ${{ env.PKGDIR }}
88
python -m cibuildwheel --output-dir wheelhouse
89
0 commit comments