summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: a7aabdb23c6fca5a46c8844f760d0d1b1a31f477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pipeline {
    agent any

    stages {
        stage('BuildIt') {
            steps {
                echo 'Building..'
            }
        }
        stage('TestIt') {
            steps {
                echo 'Testing..'
            }
        }
        stage('DeployIt') {
            steps {
                echo 'Deploying....'
            }
        }
    }
}