Skip to content

Commit

Permalink
Add Apple Silicon builds to artifacts
Browse files Browse the repository at this point in the history
This was specifically excluded by Keith in the past, but it looks like they may be working now.
I'm going to include them and see if we can get some beta testers.
  • Loading branch information
mkleehammer committed Aug 28, 2023
1 parent ad70b64 commit 6b2dbde
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/artifacts_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,16 @@ jobs:
# Windows - both 64-bit and 32-bit builds
CIBW_ARCHS_WINDOWS: "AMD64 x86"

# macOS - just Intel build (ARM doesn't work); no bundled libraries
# macOS
#
# At the time of this writing, Github actions still do not support ARM macs - all
# runners are Intel. You can cross-compile on Intel to ARM, however, which is good
# enough us.
#
# https://cibuildwheel.readthedocs.io/en/stable/faq/#how-to-cross-compile
CIBW_ARCHS_MACOS: x86_64

CIBW_ARCHS_MACOS: x86_64 arm64

# prevent the addition of unixODBC dylibs to the wheel by simply not calling the repair
CIBW_REPAIR_WHEEL_COMMAND_MACOS: ""

Expand Down

0 comments on commit 6b2dbde

Please sign in to comment.