Skip to content

Commit ec0a0ce

Browse files
committed
Disable parallel processing on Linux
1 parent 273f36b commit ec0a0ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ jobs:
2222
7.0.x
2323
8.0.x
2424
25-
- name: Get Certificates
26-
run: cert-sync --user cacert.pem
27-
2825
- name: Build
2926
run: ./build.sh
3027

build.cake

+4-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ Task("Restore-Packages")
7171
.IsDependentOn("Clean")
7272
.Does(() =>
7373
{
74-
NuGetRestore("./src/Mages.sln");
74+
NuGetRestore("./src/Mages.sln", new NuGetRestoreSettings
75+
{
76+
DisableParallelProcessing = isRunningOnUnix && isRunningOnGitHubActions,
77+
});
7578
});
7679

7780
Task("Update-Assembly-Version")

0 commit comments

Comments
 (0)