xcodebuild-get-details
Retrieve specific details from cached Xcode build results, including logs, errors, warnings, summaries, commands, or metadata, using a build ID and detail type to streamline debugging and analysis.
Instructions
Get detailed information from cached build results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildId | Yes | Build ID from previous xcodebuild-build call | |
detailType | Yes | Type of details to retrieve | |
maxLines | No | Maximum number of lines to return for logs |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"buildId": {
"description": "Build ID from previous xcodebuild-build call",
"type": "string"
},
"detailType": {
"description": "Type of details to retrieve",
"enum": [
"full-log",
"errors-only",
"warnings-only",
"summary",
"command",
"metadata"
],
"type": "string"
},
"maxLines": {
"default": 100,
"description": "Maximum number of lines to return for logs",
"type": "number"
}
},
"required": [
"buildId",
"detailType"
],
"type": "object"
}