From 7fa3c5c2213e7c9c91fb6fa188ba5f22784ba018 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Thu, 26 Jan 2023 09:10:52 +0100 Subject: [PATCH] try cibuildwheel on Windows again --- .github/workflows/build-majestic.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/build-majestic.yml b/.github/workflows/build-majestic.yml index f07ea5c69..e2413ef4e 100644 --- a/.github/workflows/build-majestic.yml +++ b/.github/workflows/build-majestic.yml @@ -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