Skip to content

Commit 2bc9b0a

Browse files
authored
[7.0] Fix superpmi_collect-setup.py helix images to use floating versions instead (#83100)
* Fix superpmi_collect-setup.py helix images to use floating instead Per the suggestions here: #81712 (comment) * Update comment at the top --------- Co-authored-by: carlossanlop <[email protected]>
1 parent 94213eb commit 2bc9b0a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/coreclr/scripts/superpmi_collect_setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
# 4. Lastly, it sets the pipeline variables.
2323
#
2424
# Below are the helix queues it sets depending on the OS/architecture:
25-
# | Arch | windows | Linux | macOS |
26-
# |-------|-------------------------|--------------------------------------------------------------------------------------------------------------------------------------|----------------|
27-
# | x86 | Windows.10.Amd64.X86.Rt | | - |
28-
# | x64 | Windows.10.Amd64.X86.Rt | Ubuntu.1804.Amd64 | OSX.1014.Amd64 |
29-
# | arm | - | (Ubuntu.1804.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7-20230201170255-8b7d579 | - |
30-
# | arm64 | Windows.10.Arm64 | (Ubuntu.1804.Arm64)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20230201170341-8b7d579 | OSX.1100.ARM64 |
25+
# | Arch | windows | Linux | macOS |
26+
# |-------|-------------------------|---------------------------------------------------------------------------------------------------------------|----------------|
27+
# | x86 | Windows.10.Amd64.X86.Rt | | - |
28+
# | x64 | Windows.10.Amd64.X86.Rt | Ubuntu.1804.Amd64 | OSX.1014.Amd64 |
29+
# | arm | - | (Ubuntu.1804.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7 | - |
30+
# | arm64 | Windows.10.Arm64 | (Ubuntu.1804.Arm64)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8 | OSX.1100.ARM64 |
3131
#
3232
################################################################################
3333
################################################################################
@@ -403,9 +403,9 @@ def main(main_args):
403403
helix_queue = "Windows.10.Arm64" if arch == "arm64" else "Windows.10.Amd64.X86.Rt"
404404
elif platform_name == "linux":
405405
if arch == "arm":
406-
helix_queue = "(Ubuntu.1804.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7-20230201170255-8b7d579"
406+
helix_queue = "(Ubuntu.1804.Arm32)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm32v7"
407407
elif arch == "arm64":
408-
helix_queue = "(Ubuntu.1804.Arm64)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8-20230201170341-8b7d579"
408+
helix_queue = "(Ubuntu.1804.Arm64)[email protected]/dotnet-buildtools/prereqs:ubuntu-18.04-helix-arm64v8"
409409
else:
410410
helix_queue = "Ubuntu.1804.Amd64"
411411
elif platform_name == "osx":

0 commit comments

Comments
 (0)