From 36fa8b70a482b3dbd1e117bba1b76196d639e7ed Mon Sep 17 00:00:00 2001 From: Edward Chen <18449977+edgchen1@users.noreply.github.com> Date: Mon, 25 Aug 2025 09:23:43 -0700 Subject: [PATCH] Update mac.yml iphone_simulator job - use Xcode 16.4 and simulator runtime version 18.5. --- .github/workflows/mac.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 9cc1604d71e68..0a2f379dad999 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -53,7 +53,8 @@ jobs: runs-on: macos-15 env: - xcode_version: 16 + xcode_version: 16.4 + simulator_runtime_version: 18.5 strategy: matrix: @@ -90,6 +91,8 @@ jobs: --apple_deploy_target=15.1 \ --apple_sysroot=iphonesimulator \ --osx_arch=${{ matrix.target_arch }} + env: + ORT_GET_SIMULATOR_DEVICE_INFO_REQUESTED_RUNTIME_VERSION: ${{ env.simulator_runtime_version }} Objective-C-StaticAnalysis: runs-on: macos-14