From 7cf94db7e1947004ef1b4ddb4a4e935b48309c9f Mon Sep 17 00:00:00 2001 From: edgchen1 <18449977+edgchen1@users.noreply.github.com> Date: Mon, 21 Oct 2024 15:46:37 -0700 Subject: [PATCH] improve comment --- .../azure_pipelines/templates/xcode-build-and-test-step.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ci_build/azure_pipelines/templates/xcode-build-and-test-step.yml b/ci_build/azure_pipelines/templates/xcode-build-and-test-step.yml index fb379205..81f5cf88 100644 --- a/ci_build/azure_pipelines/templates/xcode-build-and-test-step.yml +++ b/ci_build/azure_pipelines/templates/xcode-build-and-test-step.yml @@ -20,10 +20,12 @@ steps: packageApp: false destinationPlatformOption: 'iOS' destinationTypeOption: 'simulators' - # Note: The simulator version (after "OS=" in destinationSimulators) should be compatible with the Xcode version - # (in xcodeDeveloperDir). + # Note: The simulator version should be compatible with the Xcode version. # Refer to the table here: https://developer.apple.com/support/xcode/ # Pick a simulator version that is supported by the Xcode version. + # + # Xcode version: "/Applications/Xcode_.app/Contents/Developer" in xcodeDeveloperDir + # Simulator version: "OS=" in destinationSimulators destinationSimulators: 'iPhone 15,OS=17.5' ${{ if ne(parameters.args, '') }}: args: ${{ parameters.args }}