Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Console View


Categories: config db debian docs os www
Legend:   Passed Failed Failed Again Running Exception Offline No data

config db debian docs os www
Dustin J. Mitchell
Merge branch 'remote_build_props' of git://github.com/andrewjcg/buildbot
Dustin J. Mitchell
Merge pull request #741 from ehershey/patch-1

Fix minor typo in INVALID EMAIL log msg
Dustin J. Mitchell
Merge branch 'webstatus_property_filter' of git://github.com/andrewjcg/buildbot
Ernie Hershey
Fix minor typo in INVALID EMAIL log msg
Dustin J. Mitchell
spell master correctly
Dustin J. Mitchell
Merge branch 'mercurialextractor' of git://github.com/bcully/buildbot
Dustin J. Mitchell
Merge branch 'create-slave-cli' of git://github.com/elmirjagudin/buildbot
Andrew Gallagher
Support filtering builds and build requests in the WebStatus builder view via property parameters
Andrew Gallagher
Add a getProperties method to Build remote object
Andrew Gallagher
Control build search depth with a ?maxsearch parameter
Andrew Gallagher
Accept a filter callable in BuilderStatus's generateFinishedBuilds
Brendan Cully
MercurialExtractor: fall back to working directory diff if no upstream is configured
Brendan Cully
MercurialExtractor: report hg errors
Brendan Cully
MercurialExtractor: correctly calculate GCA between working directory and upstream
Brendan Cully
MercurialExtractor: set baserev in parseStatus (indentation error)
Elmir Jagudin
renamed buildslave.test.misc.OpenFileMixin class to FileIOMixin

The FileIOMixin class name is more descriptive, as the mixin now patches
more then just open() function
Elmir Jagudin
added unit tests on buildslave.scripts.create_slave._makeInfoFiles()
Elmir Jagudin
buildslave.test.misc.OpenFileMixin: specify default errno

In methods that patches open() to simulate open, read and write errors
use default errno for the exception raised.
Elmir Jagudin
changed indention to follow PEP8
Elmir Jagudin
added unit tests on buildslave.scripts.create_slave._makeBuildbotTac()
Elmir Jagudin
added unit tests on buildslave.scripts.create_slave._makeBaseDir()
Elmir Jagudin
added unit tests on buildslave.scripts.create_slave.createSlave()
Elmir Jagudin
catch IO errors when doing 'buildslave create-slave'

When creating buildslave directory with 'buildslave create-slave'
command, catch IO errors and print user friendly error messages.
Elmir Jagudin
slave cli: replaced Maker class with local functions

No point in creating a single instance of Maker class, we can as well
call some local functions.
Elmir Jagudin
moved master argument parsing to CreateSlaveOptions class

Moved the code that validates and parses 'buildbot create-slave'
master argument to runner.CreateSlaveOptions class.