Skip to content

Commit

Permalink
[ci] Only install Android SDK API-34 on test agents. (#8670)
Browse files Browse the repository at this point in the history
Now that API-34 is our baseline, we no longer need to install the API-33 Android SDK on our test agents, saving a little bit of space and time.
  • Loading branch information
jpobst authored Jan 25, 2024
1 parent e67afc7 commit 5c39b4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-tools/automation/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ stages:
installLegacyDotNet: false
restoreNUnitConsole: false
updateMono: false
androidSdkPlatforms: 23,24,25,26,27,28,29,30,31,32,$(DefaultTestSdkPlatforms)
androidSdkPlatforms: 23,24,25,26,27,28,29,30,31,32,33,$(DefaultTestSdkPlatforms)

- task: NuGetAuthenticate@0
displayName: authenticate with azure artifacts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ stages:
avdAbi: x86
avdType: android-wear
deviceName: wear_square
androidSdkPlatforms: 33
androidSdkPlatforms: 34
pool:
vmImage: $(HostedMacImage)
workspace:
Expand Down
2 changes: 1 addition & 1 deletion build-tools/automation/yaml-templates/variables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ variables:
- name: IsRelOrTargetingRel
value: $[or(startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['System.PullRequest.TargetBranch'], 'release/'))]
- name: DefaultTestSdkPlatforms # Comma-separated SDK Platform(s) to install on test agents (no spaces)
value: 33,34
value: 34
- name: ExcludedNightlyNUnitCategories
value: 'cat != SystemApplication & cat != TimeZoneInfo & cat != Localization'

0 comments on commit 5c39b4f

Please sign in to comment.