0 votes
in Jenkins by
What are Scripted Pipelines in Jenkins?

1 Answer

0 votes
by
Scripted Pipeline follows Groovy Syntax as given below:

Node {

           }

In the above syntax, the node is a part of the Jenkins distributed mode architecture, where there

are two types of node Master which handle all the tasks in the development environment and

the Agent is being used to handle multiple tasks individually.
...