Difference between different jenkins pipeline plugin

柔情痞子 提交于 2021-02-07 17:55:01

问题


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:

  1. Pipeline Plugin
  2. Build Pipeline Plugin
  3. Delivery Pipeline Plugin

They all seem same to me. Can anyone help me decide when to use which plugin?

Thanks.


回答1:


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/.



来源:https://stackoverflow.com/questions/48679744/difference-between-different-jenkins-pipeline-plugin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!