From 1ebd6fef8c4e6f541bf2528b95cd73df2fadf503 Mon Sep 17 00:00:00 2001 From: Julien Lebosquain Date: Mon, 4 Nov 2024 21:10:13 +0100 Subject: [PATCH] Update pipelines to macOS 13 (#17428) --- azure-pipelines.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f6e116a8fa..87d001db67 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -69,7 +69,7 @@ jobs: variables: SolutionDir: '$(Build.SourcesDirectory)' pool: - vmImage: 'macos-12' + vmImage: 'macos-13' steps: - task: UseDotNet@2 displayName: 'Use .NET 6.0 Runtime' @@ -109,10 +109,11 @@ jobs: inputs: actions: 'build' scheme: '' - sdk: 'macosx12.3' + sdk: 'macosx13.0' configuration: 'Release' xcWorkspacePath: '**/*.xcodeproj/project.xcworkspace' - xcodeVersion: '13' # Options: 8, 9, default, specifyPath + xcodeVersion: 'specifyPath' # Options: 8, 9, default, specifyPath + xcodeDeveloperDir: '/Applications/Xcode_14.1.app/Contents/Developer' args: '-derivedDataPath ./' - task: CmdLine@2