try cibuildwheel on Windows again

This commit is contained in:
Krasimir Angelov
2023-01-26 09:10:52 +01:00
parent 74e0880eca
commit 7fa3c5c221

View File

@@ -294,6 +294,18 @@ jobs:
with:
python-version: '3.10'
- name: Install cibuildwheel
run: |
python3 -m pip install git+https://github.com/joerick/cibuildwheel.git@main
- name: Install and test bindings
env:
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: "cd {project}/src/runtime/python; pytest"
CIBW_SKIP: pp*
run: |
python3 -m cibuildwheel src/runtime/python --output-dir wheelhouse
- name: Install and test bindings
run: |
cd src/runtime/python