Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,13 @@ steps:
packageApp: false
destinationPlatformOption: 'iOS'
destinationTypeOption: 'simulators'
destinationSimulators: 'iPhone 15'
# 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_<version>.app/Contents/Developer" in xcodeDeveloperDir
# Simulator version: "OS=<version>" in destinationSimulators
destinationSimulators: 'iPhone 15,OS=17.5'
${{ if ne(parameters.args, '') }}:
args: ${{ parameters.args }}
displayName: "Xcode build and test"
Loading