-
Task
-
Resolution: Fixed
-
Minor
-
None
We want to change wrappers from:
pipeline { agent none wrappers { timeout(time: 5, unit: 'MINUTES') colorize() } stages { stage("foo") { steps { echo "hello" } } } }
To look like this:
pipeline { agent none options { timeout(time: 5, unit: 'MINUTES') colorize() } stages { stage("foo") { steps { echo "hello" } } } }
- links to
[JENKINS-40462] Wrappers in options
Description |
Original:
We don't want to have {code} pipeline { agent none wrappers { timeout(time: 5, unit: 'MINUTES') colorize() } stages { stage("foo") { steps { echo "hello" } } } } {code} To: {code} pipeline { agent none options { timeout(time: 5, unit: 'MINUTES') colorize() } stages { stage("foo") { steps { echo "hello" } } } } {code} |
New:
We want to change wrappers from: {code} pipeline { agent none wrappers { timeout(time: 5, unit: 'MINUTES') colorize() } stages { stage("foo") { steps { echo "hello" } } } } {code} To look like this: {code} pipeline { agent none options { timeout(time: 5, unit: 'MINUTES') colorize() } stages { stage("foo") { steps { echo "hello" } } } } {code} |
Status | Original: Open [ 1 ] | New: In Progress [ 3 ] |
Remote Link | New: This issue links to "PR #72 (Web Link)" [ 15140 ] |
Status | Original: In Progress [ 3 ] | New: In Review [ 10005 ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: In Review [ 10005 ] | New: Resolved [ 5 ] |
Status | Original: Resolved [ 5 ] | New: Closed [ 6 ] |