Skip to content

the rest works, right? #111

the rest works, right?

the rest works, right? #111

Workflow file for this run

name: Wheels
on:
push:
permissions:
contents: read
jobs:
build:
name: Build wheels on ${{ matrix.os }} ${{ matrix.archs }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
archs: [ x86_64 ]
include:
- os: macos-latest
archs: arm64
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Build wheels
run: |
python3 -m pip install cibuildwheel
python3 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: ${{ matrix.archs }}
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl