From 6603a2d21004b78754e3a7d5f5731552800873be Mon Sep 17 00:00:00 2001
From: Christian Goetze <cg@lindenlab.com>
Date: Thu, 30 Jul 2009 01:09:49 +0000
Subject: [PATCH] Reduce job count for linux builds to something the build farm
 can survive

---
 indra/develop.py | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/indra/develop.py b/indra/develop.py
index b40e81bb07c..39bb48dfa5c 100755
--- a/indra/develop.py
+++ b/indra/develop.py
@@ -383,16 +383,20 @@ def mk_distcc_hosts(basename, range, num_cpus):
 
         if job_count is None:
             hosts, job_count = count_distcc_hosts()
+            hostname = socket.gethostname()
             if hosts == 1:
-                hostname = socket.gethostname()
                 if hostname.startswith('station'):
                     hosts, job_count = mk_distcc_hosts('station', 36, 2)
                     os.environ['DISTCC_HOSTS'] = hosts
                 if hostname.startswith('eniac'):
                     hosts, job_count = mk_distcc_hosts('eniac', 71, 2)
                     os.environ['DISTCC_HOSTS'] = hosts
-            if job_count > 12:
-                job_count = 12;
+            if hostname.startswith('build'):
+                max_jobs = 6
+            else:
+                max_jobs = 12
+            if job_count > max_jobs:
+                job_count = max_jobs;
             opts.extend(['-j', str(job_count)])
 
         if targets:
-- 
GitLab