From ec0a0ce81a9d1926633e564ae57a4c6e4976188d Mon Sep 17 00:00:00 2001 From: Florian Rappl Date: Sun, 28 Jul 2024 11:04:43 +0200 Subject: [PATCH] Disable parallel processing on Linux --- .github/workflows/ci.yml | 3 --- build.cake | 5 ++++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7084b3a..d093813 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,9 +22,6 @@ jobs: 7.0.x 8.0.x - - name: Get Certificates - run: cert-sync --user cacert.pem - - name: Build run: ./build.sh diff --git a/build.cake b/build.cake index b503980..48ac740 100644 --- a/build.cake +++ b/build.cake @@ -71,7 +71,10 @@ Task("Restore-Packages") .IsDependentOn("Clean") .Does(() => { - NuGetRestore("./src/Mages.sln"); + NuGetRestore("./src/Mages.sln", new NuGetRestoreSettings + { + DisableParallelProcessing = isRunningOnUnix && isRunningOnGitHubActions, + }); }); Task("Update-Assembly-Version")