File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ public static class HelixConstants
99 public const string DebianAmd64 = "Debian.11.Amd64.Open;" ;
1010 public const string DebianArm64 = "Debian.11.Arm64.Open;" ;
1111 public const string AlmaLinuxAmd64 = "(AlmaLinux.8.Amd64.Open)[email protected] /dotnet-buildtools/prereqs:almalinux-8-helix-amd64;" ; 12- public const string NativeAotNotSupportedHelixQueues = "All.OSX;All.Ubuntu ;Windows.11.Amd64.Client.Open;Windows.Amd64.Server2022.Open;windows.11.arm64.open" ;
12+ public const string NativeAotNotSupportedHelixQueues = "All.OSX;All.Linux ;Windows.11.Amd64.Client.Open;Windows.Amd64.Server2022.Open;windows.11.arm64.open" ;
1313}
Original file line number Diff line number Diff line change 33
44using System ;
55using System . Linq ;
6+ using System . Runtime . InteropServices ;
67
78namespace Microsoft . AspNetCore . Testing ;
89
@@ -61,6 +62,11 @@ private bool ShouldSkip()
6162 {
6263 return true ;
6364 }
65+
66+ if ( Queues . Contains ( "All.Linux" ) && RuntimeInformation . IsOSPlatform ( OSPlatform . Linux ) )
67+ {
68+ return true ;
69+ }
6470
6571 return Queues . ToLowerInvariant ( ) . Split ( ';' ) . Contains ( targetQueue ) ;
6672 }
You can’t perform that action at this time.
0 commit comments