standalone buildbot possible/ don't have a remote

Jean-Paul Calderone exarkun at divmod.com
Sun Sep 28 16:07:19 EDT 2008


On Sun, 28 Sep 2008 12:15:50 -0700 (PDT), mark <mark.fink1 at googlemail.com> wrote:
>I want to start small and setup a buildbot on one machine (no slaves).
>I hope this is possible. I assume I only need one master in this case
>(without slave config)???
>
>from my master.cfg
>c['slaves'] = []
>
>... (rest of the sample config)
>
>b1 = {'name': "buildbot-full",
>#      'slavename': "bot1name",
>      'builddir': "full",
>      'factory': f1,
>      }
>
>Do I need some configuration that the builder uses the master
>instance? I experimented a bit and searched for a similar
>configuration so far without success  :-((
>

No, you have to have a slave.  It can run on the same machine, it can
run as the same user, but it has to exist.  The buildmaster can only
tell slaves to do work (of course, this is all written in Python, so
it is a simple matter of programming to *make* the buildmaster capable
of doing the slave's job, but there's not really any reason to try to
do this).

Jean-Paul



More information about the Python-list mailing list