Overview
The StageResult type holds the result of a build stage executed as part of a build.
Properties
| Property |
Type |
Description |
| agent |
string |
Name of the agent that the stage ran on, may be "[pending]" if the stage never reached an agent. |
| completed |
boolean |
True iff the stage has completed. |
| endTime |
date/time |
The time that the stage completed, not valid if completed is false. |
| errorCount |
int |
The number of error features found in the stage. |
| name |
string |
Name of the stage. |
| progress |
int |
The estimated percentage complete for the stage [0-100]. Set to -1 if no estimate has been made. |
| startTime |
date/time |
The time that the stage commenced, not valid in state pending. |
| status |
string |
The state of the stage, one of {pending, in progress, terminating, success, failure, error}. See Build States. |
| succeeded |
boolean |
True iff the stage has compeleted and succeeded. |
| warningCount |
int |
The number of warning features found in the stage. |