Hi,
I've put together a library that enables some custom syntax in my Jenkinsfile such as
myPipeline('java-maven') {
jdkVersion '8'
foo 'bar'
}
Hi,
I've put together a library that enables some custom syntax in my Jenkinsfile such as:
myPipeline('java-maven') {
jdkVersion '8'
foo 'bar'
}
Now I want to prevent users from defining their own pipelines and limit them to be using only standard ones. Is there a way to do it? If no, let's say I want to create such a plugin - any advice?