ci: update cibuildwheel for py313 #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Wheels | |
on: [push, workflow_dispatch] | |
env: | |
CIBW_SKIP: cp36-* cp37* pp* *-musllinux* cp312* | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{matrix.arch}} for ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
include: | |
- os: ubuntu-20.04 | |
arch: aarch64 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up QEMU | |
if: ${{ matrix.arch == 'aarch64' }} | |
uses: docker/setup-qemu-action@v2 | |
- name: Install OpenSSL | |
if: ${{ matrix.arch == 'aarch64' }} | |
run: sudo apt-get update && sudo apt-get install -y libssl-dev cmake | |
- name: Set OpenSSL path | |
run: echo "OPENSSL_ROOT_DIR=/usr" >> $GITHUB_ENV | |
- name: Setup cmake | |
uses: jwlawson/actions-setup-cmake@v2 | |
# with: | |
# cmake-version: '3.16.x' | |
- name: Build wheels | |
uses: pypa/[email protected] | |
# to supply options, put them in 'env', like: | |
env: | |
CIBW_BEFORE_BUILD: git submodule init && git submodule update && pip install "cmake>=3.30.2" && pip install cython numpy scikit-build | |
CPPFLAGS: -I/usr/local/opt/zlib/include | |
LDFLAGS: -L/usr/local/opt/zlib/lib | |
CIBW_ARCHS_MACOS: "arm64" | |
CIBW_ARCHS_LINUX: "aarch64" | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl |