Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
arch: x86_64
- os: ubuntu-latest
arch: aarch64
- os: macos-13
- os: macos-15-intel
arch: x86_64
- os: macos-14
arch: arm64
Expand Down Expand Up @@ -69,12 +69,12 @@ jobs:
shell: bash
run: |
echo CIBW_ENVIRONMENT_WINDOWS="FASTBUILD=1 BUILD_32=1" >> $GITHUB_ENV
- name: "MacOS 13: Set deployment target"
if: matrix.os == 'macos-13'
- name: "MacOS 15 x64: Set deployment target"
if: matrix.os == 'macos-15-intel' && matrix.arch == 'x86_64'
run: |
echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV
- name: "MacOS 14: Set deployment target & fix arch flags"
if: matrix.os == 'macos-14'
echo "MACOSX_DEPLOYMENT_TARGET=15.0" >> $GITHUB_ENV
- name: "MacOS 14 arm: Set deployment target & fix arch flags"
if: matrix.os == 'macos-14' && matrix.arch == 'arm64'
run: |
echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV
# This really shouldn't be needed though??
Expand Down
Loading