From 27e850c0dcbac771689f64baeb4b3107ed6aafb4 Mon Sep 17 00:00:00 2001 From: Tobias Ahrens Date: Mon, 23 Oct 2023 07:44:38 +0200 Subject: [PATCH] dummy --- .github/workflows/wheels.yml | 5 +---- buildutils/build.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 9a4c46a8..aebed9a5 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -33,10 +33,7 @@ jobs: - os: windows-2019 arch: AMD64 - os: windows-2019 - arch: x86 - # Does not build currently - # - os: windows-2019 - # arch: ARM64 + arch: x86 steps: - uses: actions/checkout@v3 diff --git a/buildutils/build.py b/buildutils/build.py index 0873914d..e79bdf09 100644 --- a/buildutils/build.py +++ b/buildutils/build.py @@ -28,7 +28,7 @@ def build_libcapnp(bundle_dir, build_dir): # noqa: C901 # Enable ninja for compilation if available build_type = [] - if shutil.which("ninja"): + if shutil.which("ninja") and os.name != "nt": build_type = ["-G", "Ninja"] # Determine python shell architecture for Windows