-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
Jenkins 2.263.4
Hi Team ,
I am working on automating the creation of Delivery pipeline view for Jenkins pipelines.
I followed jenkins dsl plugin link and found that when I run this same piece of code from jenkins It created a view Delivery Pipeline View but I want to create Delivery Pipeline View for Jenkins Pipelines. Both the options are different**
deliveryPipelineView('project-a') {
pipelineInstances(5)
showAggregatedPipeline()
columns(2)
sorting(Sorting.TITLE)
updateInterval(60) enableManualTriggers()
showAvatars()
showChangeLog()
pipelines
}
https://jenkinsci.github.io/job-dsl-plugin/#path/deliveryPipelineView
I can see only this in the plugin link
pipelines
{ component('Sub System A', 'compile-a') component('Sub System B', 'compile-b') regex(/compile-subsystem-(.*)/) }Can you please help me here with the Syntax how can I proceed here if I need to create the Delivery pipeline for Jenkins pipeline jobs not the freestyle jobs.