Tagged Questions

6
votes
1answer
493 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
3answers
168 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, ...
2
votes
2answers
698 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
50 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
67 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
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
395 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
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
367 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
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
2answers
68 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
3answers
255 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
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
189 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
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 ...