Skip to content

Commit

Permalink
dummy
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasah committed Oct 23, 2023
1 parent 09f7cd0 commit 97a2655
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@ jobs:
# - os: macOS-latest
# arch: universal2

- os: windows-2019
- os: windows-2019 20231005
arch: AMD64
- os: windows-2019
arch: x86
# Does not build currently
# - os: windows-2019
# arch: ARM64
arch: x86


20231002.2.0 ok
20231016.1.0 fail



steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion buildutils/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 97a2655

Please sign in to comment.