Skip to content

no osx for the moment #64

no osx for the moment

no osx for the moment #64

Workflow file for this run

name: Build Wheels
on:
push:
branches: main
pull_request: {}
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Download binaries
run: |
python -m pip install ruff requests
python codegen/fetch_wgpu_bins.py
- name: Build Wheels
run: |
python -m pip install cibuildwheel==2.16.2
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl