Further testing has demonstrated that the buildbot will only work if configured like the first example at http://djmitche.github.com/buildbot/docs/0.7.11/#Build-Steps ie:
f = factory.BuildFactory() f.addStep(source.SVN(svnurl="http://svn.example.org/Trunk/")) f.addStep(shell.ShellCommand(command=["make", "all"])) f.addStep(shell.ShellCommand(command=["make", "test"])) rather than the second example listed there ie: setup_steps = [ source.SVN(svnurl="http://svn.example.org/Trunk/") shell.ShellCommand(command="./setup") ] quick = factory.BuildFactory() quick.addSteps(setup_steps) quick.addStep(shell.shellCommand(command="make quick")) Which unfortunately for me means a lot of duplication of build scripts, and a lot more places to make changes to the buildbot as the project grows. So, yes, there is a work-around, but no, the bug still exists. -- Buildbot master generates a setupBuild exception when attempting to run a builder https://bugs.launchpad.net/bugs/493575 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs