From cd116a92ddd53a8239c12ec2a7b103e946b0b5ef Mon Sep 17 00:00:00 2001 From: Timofey Solomko Date: Sat, 31 Jan 2026 21:48:04 +0800 Subject: [PATCH] [CI] Add a step for installing Darwin platforms This needs to be done before downloading BBD. AZP now has an extremely limited set of preinstalled simulators. --- azure-pipelines.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 837a90bc..c85ac8f3 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -66,6 +66,13 @@ stages: git lfs pull git lfs checkout displayName: 'Download or update test files' + - script: | + set -e -o xtrace + xcrun simctl list > /dev/null + xcodebuild -downloadPlatform iOS + xcodebuild -downloadPlatform watchOS + xcodebuild -downloadPlatform tvOS + displayName: 'Install Darwin platforms' - script: ./utils.py download-bbd-macos displayName: 'Download BitByteData' - script: ./utils.py ci script-macos