Skip to content

Windows Build

Windows Build #2

Workflow file for this run

name: Windows Build
on:
workflow_dispatch:
jobs:
buildWin:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
architecture: ['x64']
include:
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip
- os: windows-latest
skip: "*win32 pp*"
name: ${{ matrix.os }} ${{ matrix.architecture}}
env:
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}"
CIBW_BEFORE_ALL: "pip install cython"
CIBW_SKIP: ${{ matrix.skip }}
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }}
CIBW_TEST_SKIP: "*"
CIBW_BEFORE_TEST: "git status"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2
- name: delvewheel install
if: runner.os == 'Windows'
run: |
python -m pip install delvewheel cython
- name: Build wheels
uses: joerick/[email protected]
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
name: wheels