Closed
Bug 619787
Opened 15 years ago
Closed 15 years ago
Set concurrency based on available CPUs
Categories
(Mozilla Messaging Graveyard :: Release Engineering, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: jhopkins, Unassigned)
Details
<gozer> Something to try for our os x mozconfigs
CONCURRENCY=$(( `sysctl hw.logicalcpu | awk {'print $2'}` + 2 ))
and pass that as the value of -J
Comment 1•15 years ago
|
||
And on Linux
CPUS=`grep processor /proc/cpuinfo | wc -l`
CONCURRENCY = $(( $CPUS + 2 ))
| Reporter | ||
Comment 2•15 years ago
|
||
Landed tryserver config changes: http://hg.mozilla.org/build/buildbot-configs/rev/5168445dadcc
| Reporter | ||
Comment 3•15 years ago
|
||
Landed remaining config changes:
http://hg.mozilla.org/build/buildbot-configs/rev/4998d10f6932
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•