InterviewSolution
Saved Bookmarks
| 1. |
What are the types of Jenkins pipelines? |
|
Answer» Jenkins Pipelines can be either - a Declarative pipeline or a Scripted Pipeline. Declarative pipeline MAKES use of numerous, generic, predefined build steps/stages (i.e. CODE snippets) to build our job according to our build/automation needs whereas, with Scripted pipelines, the steps/stages can be custom-defined & used using a GROOVY syntax which provides better CONTROL & fine-tuned execution levels. |
|