Reputation: 3343
I am working on to setup regression for one of my project through jenkins. I am new to jenkins and kind of confused with so many available pipeline plugins. To name a few:
They all seem same to me. Can anyone help me decide when to use which plugin?
Thanks.
Upvotes: 4
Views: 2926
Reputation: 37600
While the idea is the same, they are very different in the way how you implement a deployment pipeline.
Long story short: use the Pipeline plugin, which is the "new" way and officially supported by the Jenkins team / Cloudbees and used by a huge community (see also the number of questions for jenkins-pipeline).
This allows you to define your pipeline as code following the Infrastructure as Code paradigm.
You can find the documentation for pipelines at https://jenkins.io/doc/book/pipeline/.
Upvotes: 3