From 7f1f8340d504e27a8245f37555a1f9250fe04e62 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Wed, 23 Mar 2016 08:03:09 -0700 Subject: [PATCH] Run ci-build without parallelism on Linux --- makefile.shade | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/makefile.shade b/makefile.shade index e5bd1b9035..744007ef33 100644 --- a/makefile.shade +++ b/makefile.shade @@ -151,9 +151,8 @@ var buildTarget = "compile" foreach (var batch in batchedRepos) { - Parallel.ForEach(batch.ToArray(), new ParallelOptions { MaxDegreeOfParallelism = 4 }, repo => + Parallel.ForEach(batch.ToArray(), new ParallelOptions { MaxDegreeOfParallelism = IsLinux ? 1 : 4 }, repo => { - var blockName = string.Format("Building {0}", repo); if (blockLogger != null)