Skip to content

Commit

Permalink
bump cibuildwheel to 2.2.2
Browse files Browse the repository at this point in the history
2.2 adds musllinux outputs

put musslinux in its own

exclude arm, which doesn't have libzmq builds
  • Loading branch information
minrk committed Oct 29, 2021
1 parent 25bdeb5 commit 5f251c7
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
cython: "0.29.24"
cibuildwheel: "2.1.2"
cibuildwheel: "2.2.2"
TWINE_NONINTERACTIVE: "1"

jobs:
Expand Down Expand Up @@ -91,6 +91,7 @@ jobs:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest -vsx {package}/tools/test_wheel.py"
CIBW_BUILD: "${{ matrix.cibw.build || '*' }}"
CIBW_SKIP: "${{ matrix.cibw.skip || '' }}"
CIBW_MANYLINUX_X86_64_IMAGE: "${{ matrix.cibw.manylinux_image }}"
CIBW_MANYLINUX_I686_IMAGE: "${{ matrix.cibw.manylinux_image }}"
CIBW_MANYLINUX_AARCH64_IMAGE: "${{ matrix.cibw.manylinux_image }}"
Expand All @@ -114,46 +115,58 @@ jobs:
name: manylinux1
cibw:
build: "cp36* cp37*"
skip: "*musllinux*"
manylinux_image: manylinux1

- os: ubuntu-20.04
name: manylinux2010
cibw:
build: "cp38* cp39* cp310* pp3*"
skip: "*musllinux*"
manylinux_image: manylinux2010

- os: ubuntu-20.04
name: musslinux
cibw:
skip: "*manylinux*"

- os: ubuntu-20.04
name: cp36-manylinux_aarch64
cibw:
build: "cp36*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

- os: ubuntu-20.04
name: cp37-manylinux_aarch64
cibw:
build: "cp37*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

- os: ubuntu-20.04
name: cp38-manylinux_aarch64
cibw:
build: "cp38*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

- os: ubuntu-20.04
name: cp39-manylinux_aarch64
cibw:
build: "cp39*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

- os: ubuntu-20.04
name: cp310-manylinux_aarch64
cibw:
build: "cp310*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

Expand Down

0 comments on commit 5f251c7

Please sign in to comment.