Skip to content

Commit 0cd034e

Browse files
committed
Jenkinsfile Added
1 parent eb399fa commit 0cd034e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Jenkinsfile

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("build"){
5+
steps {
6+
echo 'Building the application'
7+
}
8+
}
9+
stage("test") {
10+
steps {
11+
echo 'Testing the application'
12+
}
13+
}
14+
stage("deploy"){
15+
steps {
16+
echo 'Deploying the application'
17+
}
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)