Skip to content

Commit

Permalink
(build) Change to use appveyor as publishing platform
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiringWorm committed Feb 13, 2021
1 parent 005dfa2 commit 0db7c4c
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions setup.cake
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ BuildParameters.SetParameters(
shouldRunCodecov: true,
shouldRunCoveralls: false,
shouldUseDeterministicBuilds: true,
shouldUseTargetFrameworkPath: false,
preferredBuildAgentOperatingSystem: PlatformFamily.Linux,
preferredBuildProviderType: BuildProviderType.GitHubActions);
shouldUseTargetFrameworkPath: false);

BuildParameters.PrintParameters(Context);

Expand All @@ -33,7 +31,7 @@ ToolSettings.SetToolSettings(
testCoverageFilter: "+[Cake.Codecov]*");

// Tasks we want to override
/*((CakeTask)BuildParameters.Tasks.UploadCodecovReportTask.Task).Actions.Clear();
((CakeTask)BuildParameters.Tasks.UploadCodecovReportTask.Task).Actions.Clear();
BuildParameters.Tasks.UploadCodecovReportTask
.IsDependentOn("DotNetCore-Pack")
.Does<BuildVersion>((version) => RequireTool(BuildParameters.IsDotNetCoreBuild ? ToolSettings.CodecovGlobalTool : ToolSettings.CodecovTool, () => {
Expand Down Expand Up @@ -63,6 +61,6 @@ Codecov(new CodecovSettings {{

RequireAddin(script, environmentVariables);
})
);*/
);

Build.RunDotNetCore();

0 comments on commit 0db7c4c

Please sign in to comment.