Skip to content

Commit

Permalink
Try cibuildwheel on GitHub Action (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
li-plus authored Oct 30, 2023
1 parent dc6a8ba commit 2552da6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Adapted from https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml

name: Build Wheels

on:
workflow_dispatch:

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Build wheels
uses: pypa/[email protected]

- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

0 comments on commit 2552da6

Please sign in to comment.