Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reduce a bit the paralellism of the test builds (-j 4 instead of -j 10). This still...
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 11 Nov 2008 19:52:09 +0000 (19:52 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Tue, 11 Nov 2008 19:52:09 +0000 (19:52 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6033 48e7efb5-ca39-0410-a469-dd3cf9ba447f

build/buildbot/master/master.cfg

index 7cbf669..98cd8cb 100644 (file)
@@ -66,7 +66,7 @@ pthreads_factory_O3.addStep(ShellCommand, name ="open archive",descriptionDone="
 pthreads_factory_O3.addStep(ShellCommand,name = "configure", description="running configure",   descriptionDone="configure",
                             environ={"LC_ALL":"C"}, haltOnFailure = True,command=["./configure",  "--with-pthread","--enable-compile-warnings","--enable-compile-optimizations"])
 pthreads_factory_O3.addStep(ShellCommand,name = "make",      description = "running make",      descriptionDone = "make",
-                            environ={"LC_ALL":"C"}, haltOnFailure = True,command=["make","-j","10"])
+                            environ={"LC_ALL":"C"}, haltOnFailure = True,command=["make","-j","4"])
 pthreads_factory_O3.addStep(CustomCheck,name ="check all",        description = "running check all", descriptionDone ="check all",
                             haltOnFailure = True,command=["./checkall"])
                             
@@ -77,7 +77,7 @@ ucontext_factory_O3.addStep(ShellCommand, name ="open archive",descriptionDone="
 ucontext_factory_O3.addStep(CustomConfigure,name ="configure",description="running configure",descriptionDone="configure",
                             environ={"LC_ALL":"C"}, haltOnFailure = True,command=["./configure", "--with-context=ucontext","--enable-compile-warnings","--enable-compile-optimizations","--enable-botbuild"]) # Main difference with pthread_factory
 ucontext_factory_O3.addStep(ShellCommand,name = "make",description = "running make",descriptionDone = "make",
-                            environ={"LC_ALL":"C"}, haltOnFailure = True,command=["make","-j","10"])
+                            environ={"LC_ALL":"C"}, haltOnFailure = True,command=["make","-j","4"])
 ucontext_factory_O3.addStep(CustomCheck,name = "check all",description = "running check all",descriptionDone ="check all",
                             environ={"LC_ALL":"C"}, haltOnFailure = True,command=["./checkall"])