From 36e06da27765558f56070787e1af242a3567053e Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Tue, 9 Jul 2024 20:53:36 +0100 Subject: [PATCH] (build) Skip running Codecov There seems to be an error uploading reports to Codecov in the recent builds. Rather than try to fix this just now, let's simply skip it, as it isn't a requirement for just now. --- recipe.cake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipe.cake b/recipe.cake index 8ca2b04b..a8725827 100644 --- a/recipe.cake +++ b/recipe.cake @@ -18,7 +18,8 @@ BuildParameters.SetParameters(context: Context, integrationTestScriptPath: "./tests/integration/tests.cake", twitterMessage: standardNotificationMessage, preferredBuildProviderType: BuildProviderType.GitHubActions, - gitterMessage: "@/all " + standardNotificationMessage); + gitterMessage: "@/all " + standardNotificationMessage, + shouldRunCodecov: false); BuildParameters.PackageSources.Add(new PackageSourceData(Context, "GPR", "https://nuget.pkg.github.com/GitTools/index.json", FeedType.NuGet, false));