Questions tagged [buildbot]

Buildbot is an open-source framework for automating software build, test, and release processes.

Buildbot supports distributed, parallel execution of jobs across multiple platforms, flexible integration with version-control systems, extensive status reporting, and more.

At its core, Buildbot is a job scheduling system: it queues jobs, executes the jobs when the required resources are available, and reports the results.

A Buildbot installation has one or more masters and a collection of slaves. The masters monitor source-code repositories for changes, coordinate the activities of the slaves, and report results to users and developers. Slaves run on a variety of operating systems.

You configure Buildbot by providing a Python configuration script to the master. This script can be very simple, configuring built-in components, but the full expressive power of Python is available. This allows dynamic generation of configuration, customized components, and anything else you can devise.

The framework itself is implemented in Twisted Python, and compatible with all major operating systems.

http://buildbot.net/

319 questions
0
votes
1 answer

Running buildbot behind cherokee reverse proxy

I am attempting to run my buildbot master server behind a cherokee reverse proxy with the buildbot instance as cherokee's information source in a round robin reverse proxy layout. This is the buildbot master.cfg configuration file:- # -*- python…
Calvin Cheng
  • 35,640
  • 39
  • 116
  • 167
-1
votes
1 answer

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. :)
vernomcrp
  • 3,459
  • 11
  • 34
  • 44
-1
votes
1 answer

buildbot: Triggering Schedulers & WithProperties

I am trying to use the WithProperties in Triggering Schedulers in an add step (see this link). I need to use the same properties whatever parent job using same has to be used in child job. The following is a snapshot of my master configuration…
Scg
  • 989
  • 1
  • 7
  • 14
-1
votes
2 answers

Buildbot GitPoller - how to configure GitPoller with password

I never used GitPoller with buildbot before, but I would like to encorporate it. So I have a repo that I access with username and password, so when I clone it, I use: https://username@host.com/path/to/repo.git And when I try to pull or push it asks…
inzbartosz
  • 21
  • 2
  • 7
1 2 3
21
22