Skip to content

Commit f8aa179

Browse files
authored
Create Jenkins
1 parent 2d6cdee commit f8aa179

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Jenkins

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
pipeline
2+
{
3+
agent any
4+
stages
5+
{
6+
stage('testing code')
7+
{
8+
steps
9+
{
10+
sh 'echo "testing application"'
11+
}
12+
}
13+
stage('deploying code')
14+
{
15+
steps
16+
{
17+
sh 'echo "deploying application"'
18+
}
19+
}
20+
stage('deliver code')
21+
{
22+
steps
23+
{
24+
sh 'echo "deliver application"'
25+
}
26+
}
27+
}
28+
29+
}

0 commit comments

Comments
 (0)