Skip to content

Commit 2a4d61f

Browse files
committed
Testing Jenkins pipeline
1 parent eef876d commit 2a4d61f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Jenkinsfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pipeline {
2+
agent any
3+
4+
stages {
5+
stage('Build') {
6+
steps {
7+
echo 'Building..'
8+
}
9+
}
10+
stage('Test') {
11+
steps {
12+
echo 'Testing..'
13+
}
14+
}
15+
stage('Deploy') {
16+
steps {
17+
echo 'Deploying....'
18+
}
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)