Skip to content

Commit 537c005

Browse files
committed
reduce builds to 64 bit
1 parent 08f77e8 commit 537c005

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,22 @@ jobs:
6868

6969
- name: Build wheels
7070
env:
71-
CIBW_SKIP: "pp* *-musllinux*"
71+
CIBW_BUILD: "cp{39,310,311,312}-{manylinux_x86_64,win_amd64,macosx_x86_64}"
72+
CIBW_ARCHS: "x86_64"
73+
CIW_SKIP: "*-manylinux_i686 *-musllinux* pp*"
7274
CIBW_BEFORE_BUILD: >
7375
python -c "import utils; utils.GeosLibrary('${{ env.GEO_VERSION }}').build('extern', njobs=16)"
7476
CIBW_ENVIRONMENT: >
7577
GEOS_DIR=${{ github.workspace }}${{ runner.os == 'Windows' && '\\extern' || '/extern' }}
7678
CFLAGS=-I${{ github.workspace }}${{ runner.os == 'Windows' && '\\extern\\include' || '/extern/include' }}
7779
LDFLAGS=-L${{ github.workspace }}${{ runner.os == 'Windows' && '\\extern\\lib' || '/extern/lib' }}
80+
7881
CIBW_TEST_COMMAND: >
7982
cd {project}
8083
pip install pytest
8184
python -m pytest --cov="mpl_toolkits.basemap"
8285
--cov-report=term --ignore=dist --ignore=build
83-
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*"
86+
8487
run: |
8588
cd ${{ env.PKGDIR }}
8689
python -m cibuildwheel --output-dir wheelhouse

0 commit comments

Comments
 (0)