Skip to content

Commit 221c918

Browse files
snnnguschmue
authored andcommitted
Update MACOSX_DEPLOYMENT_TARGET (#23308)
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
1 parent 205750f commit 221c918

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/mac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
--use_xnnpack \
106106
--use_binskim_compliant_compile_flags \
107107
--ios \
108-
--apple_deploy_target=13.0 \
108+
--apple_deploy_target=15.1 \
109109
--apple_sysroot=iphonesimulator \
110110
--osx_arch=${{ matrix.target_arch }}
111111

onnxruntime/test/platform/apple/apple_package_test/Podfile.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if ENV['SKIP_MACOS_TEST'] != 'true'
1515
# Comment the next line if you don't want to use dynamic frameworks
1616
use_frameworks!
1717

18-
platform :osx, '11.0'
18+
platform :osx, '13.3'
1919

2020
target 'macos_package_testUITests' do
2121
inherit! :search_paths

tools/ci_build/github/apple/default_full_apple_framework_build_settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
],
2525
"macosx": [
2626
"--macos=MacOSX",
27-
"--apple_deploy_target=11.0"
27+
"--apple_deploy_target=13.3"
2828
],
2929
"iphoneos": [
3030
"--ios",

tools/ci_build/github/apple/default_training_ios_framework_build_settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"macosx": [
3535
"--macos=MacOSX",
36-
"--apple_deploy_target=11.0"
36+
"--apple_deploy_target=13.3"
3737
]
3838
}
3939
}

0 commit comments

Comments
 (0)