forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the queue to Windows.10.Amd64.X86.Rt (dotnet#60921)
- Loading branch information
1 parent
4ae0dea
commit c1eb508
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,12 +22,12 @@ | |
# 4. Lastly, it sets the pipeline variables. | ||
# | ||
# Below are the helix queues it sets depending on the OS/architecture: | ||
# | Arch | windows | Linux | | ||
# |-------|----------------------|--------------------------------------------------------------------------------------------------------------------------------------| | ||
# | x86 | Windows.10.Amd64.X86 | | | ||
# | x64 | Windows.10.Amd64.X86 | Ubuntu.1804.Amd64 | | ||
# | arm | - | (Ubuntu.1804.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7-bfcd90a-20200121150440 | | ||
# | arm64 | Windows.10.Arm64 | (Ubuntu.1804.Arm64)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652 | | ||
# | Arch | windows | Linux | | ||
# |-------|-------------------------|--------------------------------------------------------------------------------------------------------------------------------------| | ||
# | x86 | Windows.10.Amd64.X86.Rt | | | ||
# | x64 | Windows.10.Amd64.X86.Rt | Ubuntu.1804.Amd64 | | ||
# | arm | - | (Ubuntu.1804.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7-bfcd90a-20200121150440 | | ||
# | arm64 | Windows.10.Arm64 | (Ubuntu.1804.Arm64)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20210531091519-97d8652 | | ||
# | ||
################################################################################ | ||
################################################################################ | ||
|
@@ -387,7 +387,7 @@ def main(main_args): | |
creator = "" | ||
ci = True | ||
if is_windows: | ||
helix_queue = "Windows.10.Arm64" if arch == "arm64" else "Windows.10.Amd64.X86" | ||
helix_queue = "Windows.10.Arm64" if arch == "arm64" else "Windows.10.Amd64.X86.Rt" | ||
else: | ||
if arch == "arm": | ||
helix_queue = "(Ubuntu.1804.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7-bfcd90a-20200121150440" | ||
|