Switch to the new ARM64 Helix queues (#77764)
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>
Wed, 21 Dec 2022 21:59:33 +0000 (06:59 +0900)
committerGitHub <noreply@github.com>
Wed, 21 Dec 2022 21:59:33 +0000 (06:59 +0900)
eng/pipelines/coreclr/templates/helix-queues-setup.yml
eng/pipelines/libraries/helix-queues-setup.yml
src/libraries/System.Globalization/tests/CultureInfo/CultureInfoCtor.cs
src/libraries/System.Globalization/tests/NumberFormatInfo/NumberFormatInfoCurrencyGroupSizes.cs
src/libraries/System.Globalization/tests/NumberFormatInfo/NumberFormatInfoTests.cs

index 86908af..46b55c1 100644 (file)
@@ -166,15 +166,15 @@ jobs:
     # windows arm
     - ${{ if eq(parameters.platform, 'windows_arm') }}:
       - ${{ if and(eq(variables['System.TeamProject'], 'public'), in(parameters.jobParameters.helixQueueGroup, 'pr', 'ci', 'libraries')) }}:
-        - Windows.10.Arm64v8.Open
+        - Windows.11.Arm64.Open
       - ${{ if eq(variables['System.TeamProject'], 'internal') }}:
-        - Windows.10.Arm64
+        - Windows.11.Arm64
 
     # windows arm64
     - ${{ if eq(parameters.platform, 'windows_arm64') }}:
       - ${{ if and(eq(variables['System.TeamProject'], 'public'), in(parameters.jobParameters.helixQueueGroup, 'pr', 'ci', 'libraries')) }}:
-        - Windows.10.Arm64v8.Open
+        - Windows.11.Arm64.Open
       - ${{ if eq(variables['System.TeamProject'], 'internal') }}:
-        - Windows.10.Arm64
+        - Windows.11.Arm64
 
     ${{ insert }}: ${{ parameters.jobParameters }}
index 20ea475..0a46eb3 100644 (file)
@@ -181,13 +181,11 @@ jobs:
 
     # windows arm
     - ${{ if eq(parameters.platform, 'windows_arm') }}:
-      - Windows.10.Arm64v8.Open
+      - Windows.11.Arm64.Open
 
     # windows arm64
     - ${{ if eq(parameters.platform, 'windows_arm64') }}:
-      - Windows.10.Arm64.Open
-      # TODO: Uncomment once there is HW deployed to service Win11 ARM64 queue
-      # - Windows.11.Arm64.Open
+      - Windows.11.Arm64.Open
 
     # Browser WebAssembly
     - ${{ if eq(parameters.platform, 'Browser_wasm') }}:
index 8a4d7bb..3b67e12 100644 (file)
@@ -385,6 +385,7 @@ namespace System.Globalization.Tests
 
         [Theory]
         [MemberData(nameof(Ctor_String_TestData))]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/79867", typeof(PlatformDetection), nameof(PlatformDetection.IsArm64Process), nameof(PlatformDetection.IsWindows))]
         public void Ctor_String(string name, string[] expectedNames, bool expectToThrowOnBrowser = false)
         {
             if (!expectToThrowOnBrowser || PlatformDetection.IsNotBrowser)
index 34fd7bc..af91fe4 100644 (file)
@@ -21,6 +21,7 @@ namespace System.Globalization.Tests
 
         [Theory]
         [MemberData(nameof(CurrencyGroupSizes_TestData))]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/79867", typeof(PlatformDetection), nameof(PlatformDetection.IsArm64Process), nameof(PlatformDetection.IsWindows))]
         public void CurrencyGroupSizes_Get_ReturnsExpected(NumberFormatInfo format, int[] expected)
         {
             Assert.Equal(expected, format.CurrencyGroupSizes);
index 0fe1759..50d4539 100644 (file)
@@ -102,6 +102,7 @@ namespace System.Globalization.Tests
 
         [Theory]
         [MemberData(nameof(DigitSubstitution_TestData))]
+        [ActiveIssue("https://github.com/dotnet/runtime/issues/79867", typeof(PlatformDetection), nameof(PlatformDetection.IsArm64Process), nameof(PlatformDetection.IsWindows))]
         public void DigitSubstitutionListTest(string cultureName, DigitShapes shape)
         {
             try