Skip to content

Commit

Permalink
Create generate_wheels.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
steuxyo authored Oct 4, 2024
1 parent 9da7b33 commit 2db84a8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/generate_wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build

on: [push, pull_request]

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

steps:
- uses: actions/checkout@v2

- name: Build wheels
uses: pypa/cibuildwheel@v1.12.0
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value

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

0 comments on commit 2db84a8

Please sign in to comment.