Skip to content

Commit

Permalink
build: disable codecov as windows github image no longer has .NET 3
Browse files Browse the repository at this point in the history
  • Loading branch information
kthompson committed Jul 14, 2023
1 parent efc89fc commit 6077858
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ class Build

bool IReportCoverage.CreateCoverageHtmlReport => true;

// only the windows image on GitHub has the 3.0.0 dotnet runtime that the Codecov tool needs
bool IReportCoverage.ReportToCodecov => RuntimeInformation.IsOSPlatform(OSPlatform.Windows);
// the windows image on GitHub no longer the dotnet runtime 3.0.0 that the Codecov tool needs
// so disable for now
bool IReportCoverage.ReportToCodecov => false; // RuntimeInformation.IsOSPlatform(OSPlatform.Windows);

IEnumerable<(string PackageId, string Version)> IReportIssues.InspectCodePlugins =>
new (string PackageId, string Version)[]
Expand Down

0 comments on commit 6077858

Please sign in to comment.