Skip to content

[python] Hotfix/wheel build playground #301

[python] Hotfix/wheel build playground

[python] Hotfix/wheel build playground #301

Workflow file for this run

name: Build Wheels
on:
push:
branches:
- master
pull_request:
branches:
- master
release:
types: [published]
workflow_dispatch:
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
fetch-depth: 0
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS: AMD64
CIBW_BUILD: cp312-*
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
# build_arm64_wheels:
# # Emulation takes a long time so we save it for release/manual triggering
# name: Build arm64 wheels via emulation
# runs-on: ubuntu-latest
# if: ${{ github.event_name != 'pull_request' }}
# steps:
# - uses: actions/checkout@v4
# with:
# submodules: 'true'
# fetch-depth: 0
# - name: Set up QEMU
# if: runner.os == 'Linux'
# uses: docker/setup-qemu-action@v3
# with:
# platforms: arm64
# - name: Build wheels
# uses: pypa/[email protected]
# env:
# CIBW_ARCHS_LINUX: aarch64
# - uses: actions/upload-artifact@v4
# with:
# name: cibw-wheels-arm64
# path: ./wheelhouse/*.whl