Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xcode 16 #729

Merged
merged 2 commits into from
Sep 29, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:

env:
WORKSPACE: ${{ github.workspace }}
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_16.app/Contents/Developer
BUILD_NUMBER: ${{ github.event.inputs.buildNumber }}
YEAR: ${{ github.event.inputs.buildYear }}

Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
runner:
- macos-14
xcode:
- Xcode_15.3
- Xcode_16
- Xcode_15.4
target:
- template
Expand Down
2 changes: 1 addition & 1 deletion platform/mac/AppDelegate.mm
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ static void SigPIPEHandler(int signal)

NSString *kosVersionMinimum = @"10.9"; // we refuse to run on OSes older than this
NSString *kosVersionPrevious = @"10.12"; // should be updated as Apple releases new OSes
NSString *kosVersionCurrent = @"14.99"; // should be updated as Apple releases new OSes; we will run on this one and the previous one
NSString *kosVersionCurrent = @"15.99"; // should be updated as Apple releases new OSes; we will run on this one and the previous one

// These tags are defined on the various DeviceBuild dialogs in Interface Builder
enum {
Expand Down