Tagged Questions
BuildBot is a software development continuous integration tool which automates the compile/test cycle required to validate changes to the project code base. -Wikipedia
16
votes
2answers
4k views
buildbot vs hudson/jenkins for C++ continuous integration
I'm currently using jenkins/hudson for continuous integration a large mostly C++ project. We have separate projects for trunk and every branch. Also, there are some related projects for the Java ...
8
votes
4answers
2k views
Have buildbot poll a git repository for new commits?
Is there a buildbot plugin that will poll a git repository for new commits, like the currently included changes.SVNPoller?
The closest I have found is git_buildbot.py, but it works as a post-commit ...
6
votes
1answer
490 views
Buildbot parsing Python Unit test results
I have a test suite that outputs test results in the Python Unit Test format: http://docs.python.org/library/unittest.html
Is there an existing Buildbot module/plugin that can parse this form?
...
4
votes
2answers
1k views
How to scale buildbot in a company
I've been looking into buildbot lately, and the lack of good documentation and sample configurations makes it hard to understand how buildbot is commonly used.
According to the buildbot manual, each ...
4
votes
3answers
167 views
How to distribute and execute platform-specific unit tests?
We have a python project that we want to start testing using buildbot. Its unit tests include tests that should only work on some platforms. So, we've got tests that should pass on all platforms, ...
4
votes
3answers
394 views
“Selling” trac/buildbot/etc to upper management
My team works mostly w/ Flex-based applications. That being said, there are nearly no conventions at all (even getting them to refactor is a miracle in itself) and the like.
Coming from a .NET + ...
2
votes
4answers
758 views
Support for multiple repositories using Buildbot
Currently Buildbot does not support multiple repositories. If one desires to have this then separate instances of Buildbot need to be run.
Still I'm curious if anyone has come up with a creative ...
2
votes
1answer
784 views
Setting up a Buildbot hosting service for multiple projects
I need to set up a buildbot hosting environment which is capable of managing a large number of independent projects, and ideally provides a web front-end for users to manage their buildbot instance.
...
2
votes
2answers
697 views
buildbot: connect to IRC server using SSL
How can I use buildbot's IRC bot to connect to an IRC server that wants SSL connections?
1
vote
1answer
49 views
Why is buildbot *NOT* failing when it should?
I'm trying to fix a very complex buildbot base build system, which has the annoying habit of showing green bars with 'failed (1)' in them.
The problem is that we run several commands using the ...
1
vote
1answer
37 views
Adding customized functions to Buildbot
I have written a function in python and I would like to have Buildbot to execute this function
when it receives a "build" command. I have used the "factory.addStep()" before to add new commands ...
1
vote
1answer
66 views
Buildbot properties from changes to all build
I am using buildbot (system for CI) and have one problem. How can I send parameters of Change to all builders? I want to use the properties comments and who of Changes object.
Thx
1
vote
0answers
39 views
Buildbot - Two Schedulers with one builder = Double checkin emails?
I have a buildbot running with two Schedulers - One triggered by code checkins and another triggered by content checkins; the former needs a much shorter treeStableTimer. Both of these Schedulers ...
1
vote
3answers
84 views
How do I get just the branch from a Git command?
I am moving my monotone DVCS to git. In my build setup I have qmake get the current revision and the current branch (because these are build on buildbot) so that it can be used as a define.
...
1
vote
1answer
117 views
Centralised buildserver for local and remote compilation
I am in a team of a few developers who are sharing a license for a compiler toolchain. The issue that we are having is that after one developer has acquired the license to use the compiler, there is ...
1
vote
1answer
150 views
how to lock steps in buildbot
I have a builder which consists of steps A, B, and C; and a second builder which consists of steps U, V, and W: How can I 'block' step U until steps A and B are finished? So basically I want that ...
1
vote
2answers
393 views
build bot master config error
I installed buildbot and this is my master.cfg:
c = BuildmasterConfig = {}
from buildbot.buildslave import BuildSlave
c['slaves'] = [BuildSlave("windows", "windows32")]
c['slavePortnum'] = 9989
...
1
vote
2answers
159 views
buildbot on windows as a service
After following the suggestions outlined on their website on how to set up buildbot on windows, I'm left with one last question - I have multiple slaves and one master all set up on one computer ...
1
vote
1answer
126 views
buildbot using msysGit causing intermittent datastreram error
We are using buildbot to run continuous integration. The built-in Git build step generates this command line:
C:\Program Files\Git\bin\git.EXE fetch -t file:///s:/Repositories/repo +master
s: is a ...
1
vote
4answers
1k views
buildbot C++ build on Windows: use devenv.com, vcbuild.exe, or MSBuild.exe?
My buildbot has been running for 3 years using devenv.com to compile the projects on Windows.
Now devenv.com has troubles to build for 64 bits versions: passing the configuration as "Debug|x64" ...
1
vote
1answer
183 views
What algorithm does buildbot use to assign builders to slaves?
I have a buildbot with some builders and two slave machines.
Some of the builders can run on one slave, and some of them can run on both machines.
What algorithm will buildbot use to schedule the ...
1
vote
2answers
202 views
buildbot: run SVNPoller with --trust-server-cert
I asked this similar question and got a satisfactory answer. However, doing the same with SVNPoller doesn't work.
So how can I pass --trust-server-cert as an extra param to SVNPoller in buildbot
1
vote
1answer
579 views
buildbot: run svn with --trust-server-cert
I am trying to install buildbot for my project.
I always run my svn commands with trust-server-cert option. How can I pass that to SVN thru buildbot?
I don't see there is a way for doing that. What ...
1
vote
2answers
366 views
win32api.dll Will Not Install
I am trying to start a Buildbot Buildslave on a Windows XP virtual machine:
python buildbot start .
ImportError: No module named win32api.
Google tells me that win32api is win32api.dll. I ...
0
votes
1answer
11 views
Can Buildbot WebStatus be customized to return content type other than text/html
As a final step in my builds I have FileUpload step to upload results to the master and I'm using BuildBot WebStatus component to serve build results (.apk files in this case). Unfortunately WebStatus ...
0
votes
1answer
32 views
Compile and create a runnable jar file like eclipse, via cli
I would like to create a runnable jar in the same manner in which eclipse does, but from CLI. I am using buildbot and I would like to be able to automatically create, for example, nightly builds ...
0
votes
0answers
12 views
What i can do when buildbot fail during buildstep
all. When buildstep fail, Can i get trigged and write script to do something, send email or try catch for that. :)
0
votes
1answer
60 views
How to capture the build number from the Buildbot
Is there a variable that I can access in master.cfg? The docs aren't clear at all. Thanks.
0
votes
0answers
98 views
Why does buildbot error out when I'm trying to use a GitPoller?
It's 2 days I am looking for a solution. I have managed to install both master and a slave component.
I have a local Git repository in c:\project\testproject. The .git folder is in here. Now I have ...
0
votes
0answers
29 views
buildbot force build ignoring repository
When I click on the 'builders' link of builbot URL and force a build, the git repository I specify on the form is getting ignored; the builder is using the repository it was originally ...
0
votes
2answers
67 views
Stream stdio to a website (like buildbot)
So I am trying to work in a stdio stream for a webapp similar to Buildbot. Does anyone know how Buildbot deals with stdio? It is streaming (so it seems) and that would be exactly what I need for this ...
0
votes
1answer
32 views
How to configure buildbox slave to run from behind a firewall?
Is it possible to run a buildbox-slave from inside a corporate firewall where you are allowed to create only outgoing connection on standard HTTP(s) ports?
How can I achieve that?
0
votes
1answer
110 views
Alternative for svn_buildbot.py that does not require twisted?
I am running some Continuous Integration servers. Source repository is hosted on Subversion, and buildbot does the job of compiling and testing after every commit. My trouble is that I had recently to ...
0
votes
3answers
254 views
buildbot from start
should be dumb as everybody seems to installed it without trouble.
I spent hours within a fresh squeeze and tried different configurations (easy_install, aptitude and from source 0.81p.tar.gz) the ...
0
votes
1answer
112 views
buildbot install : git poll failed
I have a little problem.
I wanted to install buildbot so I followed the doc: http://buildbot.net/buildbot/docs/latest/Installation.html
For the master.cfg, I just copy the sample.
But when I start ...
0
votes
1answer
326 views
Is there any working example of buildbot with Mercurial
buildbot version being used is:
$ buildbot --version
Buildbot version: 0.8.3p1
Twisted version: 10.1.0
Checkconfig, gives me errors:
$ buildbot checkconfig
...
0
votes
0answers
90 views
Compile command in buildbot to generate the python executable file
There are lots of articles talking about how to create an executable (.exe) file from Python script on Windows from command line (by using py2exe, etc.). However, I have not had any luck finding how ...
0
votes
3answers
64 views
Use smart builders or a lot of schedulers to compile and test 5 builds
I want to setup a continuous integration environment with three operating systems (MacOSX, Windows and Linux). I need to build five different builds: win32bit, win64bit, lin32bit, lin64bit, and mac. ...
0
votes
2answers
188 views
buildbot doesn't accept my MailNotifier's IEMailLookup object
A number of people in my organization have different email names from perforce names, so I need to create an IEmailLookup derivation that overrides getAddress to do my evil bidding:
(From my ...
0
votes
1answer
455 views
buildbot and cmake cannot create vs2010 generator
i mount a continious integration plateform with buildbot, the project use cmake for generate a visual studio 2010 solution.
for test purpose i use my windows dev vm for the buildslave, cmake die with ...
0
votes
1answer
186 views
the svnpoller is not triggered (warning in the twistd.log)
I am not sure what is going on, but i get this weird issue with buildbot.
The SVNPoller is configured as it should (checked various config example files), when i run the buildbot checkconfig it says ...
0
votes
1answer
143 views
System for testing and submitting pending changes (ideally in Perforce)
I've got a working post-checkin validation system in place for our team's C/C++ projects using Buildbot and Perforce, and it's worked well for us. However, our current system responds to checkins and ...
0
votes
1answer
118 views
Setting up a code repository and buildbot on remote server
I have a new project that I will be working on with multiple people and I was wondering if anyone has some good software or wikis or links about setting up repository(preferable git) and an automatic ...
0
votes
1answer
193 views
Run build after every commit to git repository at buildbot
I'd like to run build after every commit to git repository. I've set-upped GitPoller, which monitors my git repository on new commits and informs me about it, but I couldn't find how to do some action ...
0
votes
2answers
189 views
Build error message when running SVNPoller
I'm trying to setup Buildbot in my organization but have a problem with the SVNPoller.
Whenever the subversion repository changes the SVNPoller correctly keeps recognizes this but then fails with the ...
0
votes
1answer
28 views
Buildbot 0.8.1 inactive for 2 minutes before building
My apologies if this has been answered before - I can't seem to find any previous q&a on this.
I run buildbot 0.8.1 and use PBChangeSource() to receive changes from svn. Problem is a build will ...
0
votes
1answer
23 views
Exceptions from Buildbots PeriodicScheduler intervals?
Buildbots Periodic scheduler triggers builds at fixed intervals (e.g. every 30 minutes). But there are certain times (e.g. at night, during the weekend or while regular maintenance is performed) where ...
0
votes
2answers
428 views
run buildbot on Windows XP
I recently stumbled over buildbot and wanted to give it a try.
My problem is that I have to run it under Windows because we don't use Linux on workstations or servers in my company.
I've already ...
0
votes
1answer
235 views
buildbot: buildbot.slave.commands.SVN vs. buildbot.steps.source.SVN
Buildbot question:
When to use each of these classes: buildbot.slave.commands.SVN and buildbot.steps.source.SVN?
I want the class that is used to check out a project from svn.