get_build_status
Retrieve TeamCity build status with optional details on tests, problems, and queue context to monitor CI/CD pipeline execution.
Instructions
Get build status with optional test/problem and queue context details
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| buildId | Yes | Build ID | |
| includeProblems | No | Include build problems | |
| includeQueueReason | No | Include waitReason for the queued item (extra API call when queued) | |
| includeQueueTotals | No | Include total queued count (extra API call when queued) | |
| includeTests | No | Include test summary |
Input Schema (JSON Schema)
{
"properties": {
"buildId": {
"description": "Build ID",
"type": "string"
},
"includeProblems": {
"description": "Include build problems",
"type": "boolean"
},
"includeQueueReason": {
"description": "Include waitReason for the queued item (extra API call when queued)",
"type": "boolean"
},
"includeQueueTotals": {
"description": "Include total queued count (extra API call when queued)",
"type": "boolean"
},
"includeTests": {
"description": "Include test summary",
"type": "boolean"
}
},
"required": [
"buildId"
],
"type": "object"
}