Skip to content

Add MatX, update ORT version, pybind11 version (#189) #1283

Add MatX, update ORT version, pybind11 version (#189)

Add MatX, update ORT version, pybind11 version (#189) #1283

Workflow file for this run

name: Build Wheel Windows
on:
push:
# branches:
# - main
# - 'releases/**'
pull_request:
# types:
# - closed
# branches:
# - main
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v4
# Used to host cibuildwheel
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel
- name: python version
run: python -V
- name: Build wheels
run: python -m cibuildwheel
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl