get_build_results
Retrieve comprehensive build results from TeamCity including tests, artifacts, changes, and statistics for detailed CI/CD analysis and troubleshooting.
Instructions
Get detailed results of a build including tests, artifacts, changes, and statistics
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| artifactFilter | No | Filter artifacts by name/path pattern | |
| buildId | Yes | Build ID | |
| includeArtifacts | No | Include artifacts listing and metadata | |
| includeChanges | No | Include VCS changes | |
| includeDependencies | No | Include dependency builds | |
| includeStatistics | No | Include build statistics | |
| maxArtifactSize | No | Max artifact content size (bytes) when inlining |
Input Schema (JSON Schema)
{
"properties": {
"artifactFilter": {
"description": "Filter artifacts by name/path pattern",
"type": "string"
},
"buildId": {
"description": "Build ID",
"type": "string"
},
"includeArtifacts": {
"description": "Include artifacts listing and metadata",
"type": "boolean"
},
"includeChanges": {
"description": "Include VCS changes",
"type": "boolean"
},
"includeDependencies": {
"description": "Include dependency builds",
"type": "boolean"
},
"includeStatistics": {
"description": "Include build statistics",
"type": "boolean"
},
"maxArtifactSize": {
"description": "Max artifact content size (bytes) when inlining",
"type": "number"
}
},
"required": [
"buildId"
],
"type": "object"
}