Skip to content

Commit 48a380d

Browse files
author
mpsakthi
committed
Add Jenkins file
1 parent 88cc556 commit 48a380d

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

Jenkinsfile

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/usr/bin/env groovy
2+
pipeline {
3+
agent any
4+
5+
stages {
6+
stage('stage one') {
7+
steps {
8+
script {
9+
echo "Stage 1
10+
}
11+
12+
}
13+
}
14+
stage('stage two') {
15+
steps {
16+
echo "Stage 2"
17+
}
18+
}
19+
stage('stage three') {
20+
21+
steps {
22+
echo "stage 3"
23+
}
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)