-
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