Skip to content

Commit f05a1d0

Browse files
committed
[Infra] exclude 3.1, x86 from test
1 parent 0fa1405 commit f05a1d0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Build/Nuke/ProjectExtensions.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public static IReadOnlyCollection<string> GetPlatformsForTests(this Project proj
5656
if (azurePipelines != null && x.framework.Contains("2.2"))
5757
return false;
5858

59-
//exclude netcore 2.1, 2.2, 3.0, 5.0 in x86 because is not well handle by azure pipelines and github actions on windows
59+
//exclude netcore 2.1, 2.2, 3.0, 3.1, 5.0 in x86 because is not well handle by azure pipelines and github actions on windows
6060
if (x.platform != "x86")
6161
return true;
6262
if (x.framework == null)
@@ -67,6 +67,8 @@ public static IReadOnlyCollection<string> GetPlatformsForTests(this Project proj
6767
return false;
6868
if (x.framework.Contains("3.0"))
6969
return false;
70+
if (x.framework.Contains("3.1"))
71+
return false;
7072
if (x.framework.Contains("50"))
7173
return false;
7274
return true;

0 commit comments

Comments
 (0)