Skip to content

Commit da019a0

Browse files
Create pipeline.jdp
1 parent 400b2fd commit da019a0

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

pipeline.jdp

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('Pull') {
5+
steps {
6+
sh 'echo "Pipeline from Git"'
7+
}
8+
}
9+
stage('Test') {
10+
steps {
11+
sh 'echo "Testing Completed in pipeline.jdp"'
12+
}
13+
}
14+
stage('Deploy') {
15+
steps {
16+
sh 'echo "Deployment Completed"'
17+
}
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)