Skip to content

Commit 49ec198

Browse files
committed
Fix CI: Use Xcode 16.1 and dynamic MariaDB library paths
1 parent 1a2dbc8 commit 49ec198

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ env:
1818
XCODE_PROJECT: TablePro.xcodeproj
1919
XCODE_SCHEME: TablePro
2020
BUILD_CONFIGURATION: Release
21+
XCODE_VERSION: '16.1'
2122

2223
jobs:
2324
lint:
@@ -346,6 +347,12 @@ jobs:
346347
347348
echo "✅ ARM64 dependencies installed"
348349
350+
- name: Select Xcode version
351+
run: |
352+
sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app/Contents/Developer
353+
echo "Selected Xcode version:"
354+
xcodebuild -version
355+
349356
- name: Build ARM64
350357
run: |
351358
chmod +x build-release.sh
@@ -544,6 +551,12 @@ jobs:
544551
545552
echo "✅ x86_64 dependencies installed"
546553
554+
- name: Select Xcode version
555+
run: |
556+
sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app/Contents/Developer
557+
echo "Selected Xcode version:"
558+
xcodebuild -version
559+
547560
- name: Build x86_64
548561
run: |
549562
chmod +x build-release.sh

0 commit comments

Comments
 (0)