Skip to content

Commit

Permalink
Updated Build.cs to version from master
Browse files Browse the repository at this point in the history
  • Loading branch information
kekekeks committed Jul 6, 2019
1 parent 80a3d04 commit 94e2cbb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions nukebuild/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@ void RunCoreTest(string project)

foreach(var fw in frameworks)
{
if (fw.StartsWith("net4")
&& RuntimeInformation.IsOSPlatform(OSPlatform.Linux)
&& Environment.GetEnvironmentVariable("FORCE_LINUX_TESTS") != "1")
{
Information($"Skipping {fw} tests on Linux - https://github.com/mono/mono/issues/13969");
continue;
}

Information("Running for " + fw);
DotNetTest(c =>
{
Expand Down

0 comments on commit 94e2cbb

Please sign in to comment.