Skip to content

Commit

Permalink
Update MACOSX_DEPLOYMENT_TARGET (#23308)
Browse files Browse the repository at this point in the history
Fix some inconsistency. 

All our iOS build should target iOS 15.1.
All our macOS desktop build should target macOS 13.3 to align with the
changes made in #17361
  • Loading branch information
snnn authored Jan 10, 2025
1 parent 436dfc3 commit ecdeeca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
--use_xnnpack \
--use_binskim_compliant_compile_flags \
--ios \
--apple_deploy_target=13.0 \
--apple_deploy_target=15.1 \
--apple_sysroot=iphonesimulator \
--osx_arch=${{ matrix.target_arch }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if ENV['SKIP_MACOS_TEST'] != 'true'
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

platform :osx, '11.0'
platform :osx, '13.3'

target 'macos_package_testUITests' do
inherit! :search_paths
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
],
"macosx": [
"--macos=MacOSX",
"--apple_deploy_target=11.0"
"--apple_deploy_target=13.3"
],
"iphoneos": [
"--ios",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
],
"macosx": [
"--macos=MacOSX",
"--apple_deploy_target=11.0"
"--apple_deploy_target=13.3"
]
}
}

0 comments on commit ecdeeca

Please sign in to comment.