Structure
The Jenkins DevOps pipeline is defined in a “Jenkinsfile” by default named Jenkinsfile
and has the following structure (most detail omitted)
pipeline { agent { ... } parameters { ... } environment { ... } stages { stage { ... } stage { ... } ... } }
To understand these sections in more detail, refer to your Jenkins documentation. We present only the MettleCI specific things you need to know