Skip to content

donotcopy

donotcopy #58

Workflow file for this run

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