Skip to content

Commit 6c43103

Browse files
committed
ci: use Xcode 13.2.1
When we upgraded the runner to macOS 11, the old Xcode path disappeared and broke some builds. So let's switch to the latest Xcode on the macOS 11 runners to hopefully fix.
1 parent 4b6d60d commit 6c43103

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/wheel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ jobs:
7878

7979
- name: Install Dependencies
8080
run: |
81-
/Applications/Xcode_12.2.app/Contents/Developer/usr/bin/pip3 install --user --require-hashes -r ci/requirements.macoswheels.txt
82-
/Applications/Xcode_12.2.app/Contents/Developer/usr/bin/pip3 install --user wheel
81+
/Applications/Xcode_13.2.1.app/Contents/Developer/usr/bin/pip3 install --user --require-hashes -r ci/requirements.macoswheels.txt
82+
/Applications/Xcode_13.2.1.app/Contents/Developer/usr/bin/pip3 install --user wheel
8383
if: ${{ matrix.py == 'cp38-*' && matrix.arch == 'arm64' }}
8484

8585
- name: Build Wheel
@@ -89,12 +89,12 @@ jobs:
8989

9090
- name: Build Wheel
9191
run: |
92-
/Applications/Xcode_12.2.app/Contents/Developer/usr/bin/python3 setup.py bdist_wheel
92+
/Applications/Xcode_13.2.1.app/Contents/Developer/usr/bin/python3 setup.py bdist_wheel
9393
env:
9494
_PYTHON_HOST_PLATFORM: 'macosx-11.0-arm64'
9595
ARCHFLAGS: '-arch arm64'
9696
MACOSX_DEPLOYMENT_TARGET: '11.0'
97-
SDKROOT: '/Applications/Xcode_12.2.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk'
97+
SDKROOT: '/Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.1.sdk'
9898
if: ${{ matrix.py == 'cp38-*' && matrix.arch == 'arm64' }}
9999

100100
- name: Upload Wheel

0 commit comments

Comments
 (0)