From 4aeccf9d49164c7712e62cfe4207218e794bedac Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Tue, 7 May 2024 21:51:41 +0200 Subject: [PATCH 1/2] (#208) disable codecov --- recipe.cake | 1 + 1 file changed, 1 insertion(+) diff --git a/recipe.cake b/recipe.cake index 61be1df7..65b301fa 100644 --- a/recipe.cake +++ b/recipe.cake @@ -14,6 +14,7 @@ BuildParameters.SetParameters( shouldUseDeterministicBuilds: true, gitterMessage: "@/all " + standardNotificationMessage, twitterMessage: standardNotificationMessage, + shouldRunCodecov: false, preferredBuildProviderType: BuildProviderType.GitHubActions, preferredBuildAgentOperatingSystem: PlatformFamily.Linux); From 58a2efae152e862430a7adf1c41a96f1ed4afbf8 Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Tue, 7 May 2024 22:00:33 +0200 Subject: [PATCH 2/2] pin github runner to macos-13 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8e747638..a6a7a261 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, macos-latest, ubuntu-latest] + os: [windows-latest, macos-13, ubuntu-latest] env: AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }}