[Buildbot-devel] [help] my buildslave status is always pending...
Mark Pauley
mpauley at apple.com
Wed Jan 10 19:25:08 UTC 2007
Could you send us your twistd.log (on the master) as well as the
buildbot.log (on the slave)?
_Mark
On Jan 10, 2007, at 2:39 AM, blue blue wrote:
> Hi, all,
>
> I am a newer to use buildbot.
> I need to set the buildmaster with subverion VC system and make the
> buildslave to build the source.
>
> I've followed the steps in user manual to setup the information in
> master.cfg
> I could browse the status html page provided by buildmaster.
> I can ping the buildslave successfully.
> But when I clicked the "force build" button, the status always is "1
> pending" and the buildslave won't do the svn update and build!
>
> Here's the part of my settings for SVN in master.cfg
> ====================================
> from buildbot.scheduler import Scheduler
> c['schedulers'] = []
> c['schedulers'].append(Scheduler(name="svn-hello", branch=None,
> treeStableTimer=30,
> builderNames=["svn-hello"]))
>
> from buildbot import master
> from buildbot.process import factory
> from buildbot.steps.source import SVN
> from buildbot.steps.shell import Configure, Compile, Test
> from buildbot.status import html, client
> from buildbot.changes.pb import PBChangeSource
> s = factory.s
>
> c['bots'] = [["jerry", "1234"]]
>
> c['sources'] = []
> c['sources'].append(PBChangeSource())
> c['builders'] = []
>
> svnrep="svn://10.7.14.161/repos"
> steps = [
> s(SVN,
> svnurl=svnrep+"/helloword",
> mode="update",
> ),
> s(Configure),
> s(Compile, command=["make", "all"]),
> s(Test, command=["make", "check"]),
> ]
> b1 = {"name": "svn-hello",
> "slavename": "jerry",
> "builddir": "helloword",
> "factory": factory.BuildFactory(steps),
> }
> c['builders'].append(b1)
> ==========================================
>
> Is there any setting wrong?
> Or how should I modify the setting to make the buildslave to build?
>
> thanks for your help!!
>
> regards,
> Jerry
>
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to
> share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Buildbot-devel mailing list
> Buildbot-devel at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/buildbot-devel
More information about the devel
mailing list