From 94404bbfa4f8a790cb313af013c4c2622af68f67 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Sat, 2 Nov 2024 17:30:47 +0100 Subject: [PATCH] Use Ninja to generate wheels on Windows --- .github/workflows/package.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index effd950..b3b0e3d 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -99,12 +99,17 @@ jobs: - uses: actions/checkout@v4 with: submodules: true + - name: Configure build for amd64 + uses: ilammy/msvc-dev-cmd@v1 + with: + arch: amd64 - name: Build manylinux wheels uses: pypa/cibuildwheel@v2.21.3 env: CIBW_ARCHS: AMD64 CIBW_BUILD: '*-win_amd64' CIBW_BUILD_VERBOSITY: 2 + CMAKE_GENERATOR: Ninja with: output-dir: dist - uses: actions/upload-artifact@v4