Skip to content
Merged
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
8 changes: 4 additions & 4 deletions eng/pipelines/coreclr/templates/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
6 changes: 2 additions & 4 deletions eng/pipelines/libraries/helix-queues-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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') }}:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ public static IEnumerable<object[]> Ctor_String_TestData()

[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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public static IEnumerable<object[]> CurrencyGroupSizes_TestData()

[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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ public void TestNFIFormatLimits()

[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
Expand Down