From cac798479956db9bcf098126e91f5c522756a516 Mon Sep 17 00:00:00 2001 From: Rui Marinho Date: Mon, 20 Oct 2025 16:04:22 +0100 Subject: [PATCH 1/2] [ios] Install xcode 26.0.1 --- eng/pipelines/common/variables.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/common/variables.yml b/eng/pipelines/common/variables.yml index f1ebe091237e..f99dae783df3 100644 --- a/eng/pipelines/common/variables.yml +++ b/eng/pipelines/common/variables.yml @@ -8,9 +8,9 @@ variables: - name: DOTNET_VERSION value: 10.0.100-preview.2.25164.34 - name: REQUIRED_XCODE - value: 26.0.0 + value: 26.0.1 - name: DEVICETESTS_REQUIRED_XCODE - value: 26.0.0 + value: 26.0.1 - name: POWERSHELL_VERSION value: 7.4.0 # Localization variables From 81ab74d8d6b82b91d7f187b739619501ed6320be Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 20 Oct 2025 18:27:05 +0200 Subject: [PATCH 2/2] Install the iOS 26.0 simulator --- eng/pipelines/common/provision.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/pipelines/common/provision.yml b/eng/pipelines/common/provision.yml index b0500dd4672b..9b322e39da33 100644 --- a/eng/pipelines/common/provision.yml +++ b/eng/pipelines/common/provision.yml @@ -86,7 +86,7 @@ steps: xcrun xcode-select --print-path xcodebuild -version sudo xcodebuild -license accept - sudo xcodebuild -downloadPlatform iOS + sudo xcodebuild -downloadPlatform iOS -buildVersion 26.0 -architectureVariant universal sudo xcodebuild -runFirstLaunch displayName: Select Xcode Version condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))