Skip to content

update actions and cibuildwheel #2

update actions and cibuildwheel

update actions and cibuildwheel #2

Workflow file for this run

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/checkout@v3
- uses: actions/setup-python@v3
name: Install Python
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0
- 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"