[Buildbot-commits] [djmitche/buildbot] 0b7948: fix: background image relative to css
noreply at github.com
noreply at github.com
Sun Apr 11 16:22:20 UTC 2010
Branch: refs/heads/master
Home: http://github.com/djmitche/buildbot
Commit: 0b79486679ab6eedaf7f959563bdad9be4a7a236
http://github.com/djmitche/buildbot/commit/0b79486679ab6eedaf7f959563bdad9be4a7a236
Author: Tobias Oberstein <tobias.oberstein at tavendo.de>
Date: 2010-04-11 (Sun, 11 Apr 2010)
Changed paths:
M buildbot/status/web/files/default.css
Log Message:
-----------
fix: background image relative to css
Signed-off-by: Dustin J. Mitchell <dustin at zmanda.com>
Commit: d454b81852eae9adf15ccf4611d64ed286047e42
http://github.com/djmitche/buildbot/commit/d454b81852eae9adf15ccf4611d64ed286047e42
Author: Tobias Oberstein <tobias.oberstein at tavendo.de>
Date: 2010-04-11 (Sun, 11 Apr 2010)
Changed paths:
M buildbot/process/base.py
M buildbot/process/factory.py
Log Message:
-----------
Allow workdir be computed dynamically based on sourcestamp.
The patch allows one to set workdir on BuildFactory to a
callable which receives the sourcestamp to be built and is
supposed to return a workdir directory.
A reason to do so is having multiple repositories submitting
changes to a single buildbot, where one wants to allow for
workdir per repository.
You can achieve that like so:
import hashlib
build_factory = factory.BuildFactory()
build_factory.workdir = lambda source_stamp: hashlib.md5(source_stamp.repository).hexdigest()[:8]
Signed-off-by: Dustin J. Mitchell <dustin at zmanda.com>
Commit: 8d8aa437d2928c74dd82f738dd71e7176f5032de
http://github.com/djmitche/buildbot/commit/8d8aa437d2928c74dd82f738dd71e7176f5032de
Author: Tobias Oberstein <tobias.oberstein at tavendo.de>
Date: 2010-04-11 (Sun, 11 Apr 2010)
Changed paths:
M docs/cfg-buildfactories.texinfo
Log Message:
-----------
add doc for dynamic workdirs on factories
Signed-off-by: Dustin J. Mitchell <dustin at zmanda.com>
Commit: 263133603a93f25a9ec5c2d27ecc4b63594f2275
http://github.com/djmitche/buildbot/commit/263133603a93f25a9ec5c2d27ecc4b63594f2275
Author: Dustin J. Mitchell <dustin at zmanda.com>
Date: 2010-04-11 (Sun, 11 Apr 2010)
Changed paths:
M docs/cfg-buildfactories.texinfo
Log Message:
-----------
fix texinfo bugs
More information about the Commits
mailing list