Skip to content

Commit 3707112

Browse files
authored
Merge pull request #179 from reegeek/UpdateGithubImages
[Infra] Exclude net30 in x86 from test.
2 parents 188694c + f05a1d0 commit 3707112

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Build/Nuke/ProjectExtensions.cs

Lines changed: 5 additions & 3 deletions
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, 5.0, 7.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)
@@ -65,9 +65,11 @@ public static IReadOnlyCollection<string> GetPlatformsForTests(this Project proj
6565
return false;
6666
if (x.framework.Contains("2.2"))
6767
return false;
68-
if (x.framework.Contains("50"))
68+
if (x.framework.Contains("3.0"))
69+
return false;
70+
if (x.framework.Contains("3.1"))
6971
return false;
70-
if (x.framework.Contains("70"))
72+
if (x.framework.Contains("50"))
7173
return false;
7274
return true;
7375
});

0 commit comments

Comments
 (0)