Skip to content

debug

debug #2

Workflow file for this run

name: debug
on:
workflow_dispatch:
jobs:
wheels:
name: Build ${{matrix.pyver}} wheels on ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [windows-latest]
pyver: [cp311]
env:
CIBW_BUILD: ${{matrix.pyver}}-*
CIBW_ARCHS_LINUX: auto
CIBW_ARCHS_MACOS: arm64
CIBW_ARCHS_WINDOWS: auto
CIBW_SKIP: '*musllinux* *i686* *-win32'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: deps
run: python -m pip install cibuildwheel==2.19.2
- name: wheels
run: python -m cibuildwheel --output-dir package
- name: upload
uses: actions/upload-artifact@v3
with:
name: package
path: package/*.whl