Skip to content

Commit

Permalink
[ci] Reduce Xcode platform installations (dotnet#27155)
Browse files Browse the repository at this point in the history
We've been encountering various issues with ci agent disk space
availability, and can save some space/time when provisioning by cutting
unused simulators.
  • Loading branch information
pjcollins authored Jan 15, 2025
1 parent 142ec3b commit 6f45ae6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eng/pipelines/arcade/setup-test-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ steps:
xcrun xcode-select --print-path
xcodebuild -version
sudo xcodebuild -license accept
sudo xcodebuild -downloadAllPlatforms
sudo xcodebuild -downloadPlatform iOS
sudo xcodebuild -runFirstLaunch
displayName: Select Xcode Version
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/common/provision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ steps:
xcrun xcode-select --print-path
xcodebuild -version
sudo xcodebuild -license accept
sudo xcodebuild -downloadAllPlatforms
sudo xcodebuild -downloadPlatform iOS
sudo xcodebuild -runFirstLaunch
displayName: Select Xcode Version
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))
Expand Down

0 comments on commit 6f45ae6

Please sign in to comment.