From 8ead3635c74d67f4a5ff90c19d9c6d2acfee09ee Mon Sep 17 00:00:00 2001 From: Pranav K Date: Wed, 9 Mar 2016 16:57:20 -0800 Subject: [PATCH] Reduce the number of concurrent builds --- makefile.shade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.shade b/makefile.shade index 0176b1ab2e..1889014fab 100644 --- a/makefile.shade +++ b/makefile.shade @@ -89,7 +89,7 @@ var buildTarget = "compile" foreach (var batch in batchedRepos) { - Parallel.ForEach(batch, repo => + Parallel.ForEach(batch, new ParallelOptions { MaxDegreeOfParallelism = 2 }, repo => { var blockName = string.Format("Building {0}", repo);