X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d52c2173c65ec1de298061b7ef33c8f009ec04f3..36019e50645813d01d88ae478194abd14cbd98ce:/build/buildbot/master/master.cfg diff --git a/build/buildbot/master/master.cfg b/build/buildbot/master/master.cfg index bba000845e..fc9c6d253c 100644 --- a/build/buildbot/master/master.cfg +++ b/build/buildbot/master/master.cfg @@ -33,28 +33,13 @@ c['slavePortnum'] = 9989 # source code changes. Any class which implements IChangeSource can be added # to this list: there are several in buildbot/changes/*.py to choose from. -#c['change_sources'] = [] +from buildbot.changes.svnpoller import SVNPoller +c['change_source'] = SVNPoller("svn://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk", pollinterval=60) -# For example, if you had CVSToys installed on your repository, and your -# CVSROOT/freshcfg file had an entry like this: -#pb = ConfigurationSet([ -# (None, None, None, PBService(userpass=('foo', 'bar'), port=4519)), -# ]) - -# then you could use the following buildmaster Change Source to subscribe to -# the FreshCVS daemon and be notified on every commit: -# -#from buildbot.changes.freshcvs import FreshCVSSource -#fc_source = FreshCVSSource("cvs.example.com", 4519, "foo", "bar") -#c['sources'].append(fc_source) - -# or, use a PBChangeSource, and then have your repository's commit script run -# 'buildbot sendchange', or contrib/svn_buildbot.py, or -# contrib/arch_buildbot.py : -# -#from buildbot.changes.pb import PBChangeSource -#c['sources'].append(PBChangeSource()) +from buildbot import scheduler +maketarball = scheduler.Scheduler(name="maketarball", branch=None, treeStableTimer=60, builderNames=['dist builder']) +c['schedulers'] = [maketarball] #################################################################################### @@ -182,22 +167,19 @@ c['builders'] = [ ] -# status html page +# status targets c['status'] = [] from buildbot.status import html -w = html.Waterfall(http_port=8010) +c['status'].append( html.Waterfall(http_port=8010) ) -c['status'].append(w) - -# status smtp request +from buildbot.status import words +c['status'].append(words.IRC(host="irc.oftc.net", nick="buildbot", channels=["#simgrid"])) from buildbot.status.mail import MailNotifier - mn = MailNotifier(fromaddr="SimGrid buildbot ", - sendToInterestedUsers=False, - extraRecipients=['martin.quinson@loria.fr']) + sendToInterestedUsers=False, extraRecipients=['martin.quinson@loria.fr']) c['status'].append(mn) ####################################################################################