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
6 changes: 3 additions & 3 deletions eng/pipelines/coreclr/templates/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,16 +147,16 @@ jobs:
# windows x64
- ${{ if eq(parameters.platform, 'windows_x64') }}:
- ${{ if and(eq(variables['System.TeamProject'], 'public'), ne(parameters.jobParameters.helixQueueGroup, 'cet')) }}:
- Windows.10.Amd64.Open
- Windows.Amd64.Open.rt
- ${{ if and(eq(variables['System.TeamProject'], 'public'), eq(parameters.jobParameters.helixQueueGroup, 'cet')) }}:
Comment on lines 147 to 151
- Windows.11.Amd64.Cet.Open
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- Windows.10.Amd64
- Windows.Amd64.rt

# windows x86
- ${{ if eq(parameters.platform, 'windows_x86') }}:
- ${{ if eq(variables['System.TeamProject'], 'public') }}:
- Windows.10.Amd64.Open
- Windows.Amd64.Open.rt
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
Comment on lines 156 to 160
- Windows.10.Amd64.X86.Rt

Expand Down
2 changes: 1 addition & 1 deletion src/coreclr/scripts/superpmi_collect_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ def main(main_args):
if arch == "arm64": # public windows_arm64
helix_queue = "Windows.11.Arm64.Open"
else: # public windows_x64
helix_queue = "Windows.10.Amd64.Open"
helix_queue = "Windows.Amd64.Open.rt"
elif platform_name == "linux":
if arch == "arm": # public linux_arm
helix_queue = "(Debian.12.Arm32.Open)Ubuntu.2204.ArmArch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:debian-12-helix-arm32v7"
Expand Down
Loading