Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion eng/pipelines/coreclr/templates/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# Android x64
- ${{ if in(parameters.platform, 'android_x64') }}:
- ${{ if eq(variables['System.TeamProject'], 'public') }}:
- Ubuntu.2204.Amd64.Android.29.Open
- Ubuntu.2204.Amd64.Android.36.Open
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Public Android x64 queue was bumped to API 36, but the internal Android x64 queue remains pinned to API 29. If an internal API 36 queue exists (e.g., Ubuntu.2204.Amd64.Android.36), consider updating it as well to keep public/internal coverage aligned; otherwise, add a brief comment explaining why internal is intentionally staying on 29.

Suggested change
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
# Internal remains on API 29 until a matching internal API 36 queue is available.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I left out the internal queues intentionally, but if we want to do them, we can. Not sure there is much value in the comment suggested though.

- Ubuntu.2204.Amd64.Android.29

Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/helix-platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,9 @@ variables:
value: Windows.10.Amd64.Android.Open

# Android on Ubuntu (x86/x64)
# Latest: API 29
# Latest: API 36
- name: helix_android_ubuntu_latest
value: Ubuntu.2204.Amd64.Android.29.Open
value: Ubuntu.2204.Amd64.Android.36.Open

# Oldest: API 21
- name: helix_android_ubuntu_oldest
Expand Down
4 changes: 2 additions & 2 deletions eng/pipelines/libraries/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ jobs:
# Use the Ubuntu-based Android queue for x86/x64/bionic_x64 on all projects,
# and also for arm/arm64/bionic_arm/bionic_arm64 on non-public projects (no internal Windows Android queue).
- ${{ if in(parameters.platform, 'android_x86', 'android_x64', 'linux_bionic_x64') }}:
- Ubuntu.2204.Amd64.Android.29.Open
- Ubuntu.2204.Amd64.Android.36.Open
- ${{ if and(ne(variables['System.TeamProject'], 'public'), in(parameters.platform, 'android_arm', 'android_arm64', 'linux_bionic_arm', 'linux_bionic_arm64')) }}:
- Ubuntu.2204.Amd64.Android.29.Open
- Ubuntu.2204.Amd64.Android.36.Open
- ${{ if and(eq(variables['System.TeamProject'], 'public'), in(parameters.platform, 'android_arm', 'android_arm64', 'linux_bionic_arm', 'linux_bionic_arm64')) }}:
- Windows.11.Amd64.Android.Open

Expand Down
Loading