Home | Trees | Index | Help |
|
---|
Package buildbot :: Package steps :: Module shell :: Class ShellCommand |
|
BuildStep
--+ |LoggingBuildStep
--+ | ShellCommand
BuildDebs
,
BuildEPYDoc
,
Compile
,
Configure
,
HLint
,
ProcessDocs
,
PyFlakes
,
RemovePYCs
,
Test
,
TreeSize
,
Trial
I run a single shell command on the buildslave. I return FAILURE if the exit code of that command is non-zero, SUCCESS otherwise. To change this behavior, override my .evaluateCommand method.
By default, a failure of this step will mark the whole build as FAILURE. To override this, give me an argument of flunkOnFailure=False .
I create a single Log named 'log' which contains the output of the command. To create additional summary Logs, override my .createSummary method.
The shell command I run (a list of argv strings) can be provided in several ways:Method Summary | |
---|---|
__init__(self,
workdir,
description,
descriptionDone,
command,
**kwargs)
| |
checkForOldSlaveAndLogfiles(self)
| |
Return a list of short strings to describe this step, for the status display. | |
setCommand(self,
command)
| |
setupEnvironment(self,
cmd)
| |
Begin the step. | |
Inherited from LoggingBuildStep | |
| |
This is a general-purpose hook method for subclasses. | |
To create summary logs, do something like this: warnings = grep('^Warning:', log.getText()) self.addCompleteLog('warnings', warnings) | |
Decide whether the command was SUCCESS, WARNINGS, or FAILURE. | |
| |
| |
We have decided to add a short note about ourselves to the overall build description, probably because something went wrong. | |
Halt the command, either because the user has decided to cancel the build ('reason' is a string), or because the slave has disconnected ('reason' is a ConnectionLost Failure). | |
| |
| |
Set up any additional logfiles= logs. | |
| |
Inherited from BuildStep | |
| |
| |
| |
| |
| |
Add a BuildStep URL to this step. | |
| |
| |
| |
| |
| |
| |
BuildSteps can call self.setProgress() to announce progress along some metric. | |
| |
| |
| |
Return the version number of the given slave command. | |
| |
Begin the step. |
Instance Variable Summary | |
---|---|
NoneType |
command : a list of argv strings (or WithProperties instances). |
logfiles : a dict mapping log NAMEs to workdir-relative FILENAMEs of their
corresponding logfiles. | |
Inherited from BuildStep | |
buildbot.process.base.Build |
build : the parent Build which is executing this step |
buildbot.status.progress.StepProgress |
progress : tracks ETA for the step |
buildbot.status.builder.BuildStepStatus |
step_status : collects output status |
Class Variable Summary | |
---|---|
NoneType |
description = None |
NoneType |
descriptionDone = None |
bool |
flunkOnFailure = True
|
str |
name = 'shell'
|
Inherited from LoggingBuildStep | |
list |
parms = ['build', 'name', 'locks', 'haltOnFailure', 'flu...
|
tuple |
progressMetrics = ('output',)
|
Inherited from BuildStep | |
bool |
flunkOnWarnings = False
|
bool |
haltOnFailure = False
|
list |
locks = []
|
bool |
useProgress = True
|
bool |
warnOnFailure = False
|
bool |
warnOnWarnings = False
|
Method Details |
---|
describe(self, done=False)Return a list of short strings to describe this step, for the status display. This uses the first few words of the shell command. You can replace this by setting .description in your subclass, or by overriding this method to describe the step better.
|
start(self)Begin the step. Override this method and add code to do local processing, fire off remote commands, etc. To spawn a command in the buildslave, create a RemoteCommand instance and run it with self.runCommand:c = RemoteCommandFoo(args) d = self.runCommand(c) d.addCallback(self.fooDone).addErrback(self.failed)As the step runs, it should send status information to the BuildStepStatus: self.step_status.setColor('red') self.step_status.setText(['compile', 'failed']) self.step_status.setText2(['4', 'warnings'])To have some code parse stdio (or other log stream) in realtime, add a LogObserver subclass. This observer can use self.step.setProgress() to provide better progress notification to the step.: self.addLogObserver('stdio', MyLogObserver())To add a LogFile, use self.addLog. Make sure it gets closed when it finishes. When giving a Logfile to a RemoteShellCommand, just ask it to close the log when the command completes: log = self.addLog('output') cmd = RemoteShellCommand(args) cmd.useLog(log, closeWhenFinished=True)You can also create complete Logfiles with generated text in a single step: self.addCompleteLog('warnings', text) When the step is done, it should call self.finished(result).
'result' will be provided to the If the step encounters an exception, it should call self.failed(why). 'why' should be a Failure object. This automatically fails the whole build with an exception. It is a good idea to add self.failed as an errback to any Deferreds you might obtain. If the step decides it does not need to be run, start() can return the constant SKIPPED. This fires the callback immediately: it is not necessary to call .finished yourself. This can also indicate to the status-reporting mechanism that this step should not be displayed.
|
Instance Variable Details |
---|
commanda list of argv strings (or WithProperties instances). This will be used by start() to create a RemoteShellCommand instance.
|
Class Variable Details |
---|
description
|
descriptionDone
|
flunkOnFailure
|
name
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sun Dec 10 22:04:45 2006 | http://epydoc.sf.net |