Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 3 Next »

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

Sections before “stages”

  • No labels