From: mquinson Date: Tue, 11 Nov 2008 19:52:09 +0000 (+0000) Subject: Reduce a bit the paralellism of the test builds (-j 4 instead of -j 10). This still... X-Git-Tag: v3.3~88 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/dcf4b0f969b76637699e18120b22d7461cf5d328 Reduce a bit the paralellism of the test builds (-j 4 instead of -j 10). This still causes some issues at some places (not sure why) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6033 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/build/buildbot/master/master.cfg b/build/buildbot/master/master.cfg index 7cbf66931d..98cd8cb257 100644 --- a/build/buildbot/master/master.cfg +++ b/build/buildbot/master/master.cfg @@ -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"])