-
Type:
Task
-
Resolution: Fixed
-
Priority:
Minor
-
Component/s: pipeline-model-definition-plugin
-
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