Update build_publish.yml #22
Workflow file for this run
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 Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
name: Install Python | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.21.3 | |
- name: Get submodules | |
run: git submodule update --init --recursive | |
- name: Build wheels for Windows | |
if: startsWith(matrix.os, 'windows') | |
run: | | |
python -m cibuildwheel --output-dir wheels | |
env: | |
CIBW_SKIP: "cp27-* pp27-*" # skip Python 2.7 wheels | |
- name: Build wheels for mac and manylinux | |
if: "!startsWith(matrix.os, 'windows')" | |
run: | | |
python -m cibuildwheel --output-dir wheels | |
env: | |
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64" |