get_build_log
Retrieve the console output of a Jenkins build by specifying the job path and build number. Use to monitor build details and debug CI/CD pipelines efficiently.
Instructions
Get the console output of a Jenkins build
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildNumber | Yes | Build number (use "lastBuild" for most recent) | |
jobPath | Yes | Path to the Jenkins job |
Input Schema (JSON Schema)
{
"properties": {
"buildNumber": {
"description": "Build number (use \"lastBuild\" for most recent)",
"type": "string"
},
"jobPath": {
"description": "Path to the Jenkins job",
"type": "string"
}
},
"required": [
"jobPath",
"buildNumber"
],
"type": "object"
}