summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: a458d2a85096e9f8ca065f12c1f372bb9015a094 (plain)
1
2
3
4
5
6
7
8
9
10
11
pipeline {
    agent any

    stages {
        stage('Verify') {
            steps {
                echo 'Jenkins is successfully executing the Pipeline!'
            }
        }
    }
}