diff --git a/docs/buildbot.texinfo b/docs/buildbot.texinfo
index 9a1c674..5b2989e 100644
|
a
|
b
|
used to give a name to any LogFiles created by this step. |
| 4221 | 4221 | |
| 4222 | 4222 | @item haltOnFailure |
| 4223 | 4223 | if True, a FAILURE of this build step will cause the build to halt |
| 4224 | | immediately with an overall result of FAILURE. |
| | 4224 | immediately with an overall result of FAILURE. Steps with |
| | 4225 | @code{alwaysRun=True} are still run. |
| 4225 | 4226 | |
| 4226 | 4227 | @item flunkOnWarnings |
| 4227 | 4228 | when True, a WARNINGS or FAILURE of this build step will mark the |
| … |
… |
executed. |
| 4240 | 4241 | when True, a FAILURE of this build step will mark the overall build as |
| 4241 | 4242 | having WARNINGS. The remaining steps will still be executed. |
| 4242 | 4243 | |
| | 4244 | @item alwaysRun |
| | 4245 | if True, this build step will always be run, even if a previous buildstep |
| | 4246 | with @code{haltOnFailure=True} has failed. |
| | 4247 | |
| 4243 | 4248 | @item locks |
| 4244 | 4249 | a list of Locks (instances of @code{buildbot.locks.SlaveLock} or |
| 4245 | 4250 | @code{buildbot.locks.MasterLock}) that should be acquired before |
| … |
… |
Each step can affect the build process in the following ways: |
| 6184 | 6189 | If the step's @code{haltOnFailure} attribute is True, then a failure |
| 6185 | 6190 | in the step (i.e. if it completes with a result of FAILURE) will cause |
| 6186 | 6191 | the whole build to be terminated immediately: no further steps will be |
| 6187 | | executed. This is useful for setup steps upon which the rest of the |
| 6188 | | build depends: if the CVS checkout or @code{./configure} process |
| 6189 | | fails, there is no point in trying to compile or test the resulting |
| 6190 | | tree. |
| | 6192 | executed, with the exception of steps with @code{alwaysRun} set to |
| | 6193 | True. @code{haltOnFailure} is useful for setup steps upon which the |
| | 6194 | rest of the build depends: if the CVS checkout or @code{./configure} |
| | 6195 | process fails, there is no point in trying to compile or test the |
| | 6196 | resulting tree. |
| | 6197 | |
| | 6198 | @item |
| | 6199 | If the step's @code{alwaysRun} attribute is True, then it will always |
| | 6200 | be run, regardless of if previous steps have failed. This is useful |
| | 6201 | for cleanup steps that should always be run to return the build |
| | 6202 | directory or build slave into a good state. |
| 6191 | 6203 | |
| 6192 | 6204 | @item |
| 6193 | 6205 | If the @code{flunkOnFailure} or @code{flunkOnWarnings} flag is set, |