Skip to content

Commit 563d02f

Browse files
Create Testfile2
1 parent ca99eaf commit 563d02f

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Testfile2

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 the app'
8+
}
9+
}
10+
stage('Testing the app') {
11+
steps {
12+
echo 'Testing the app'
13+
}
14+
}
15+
stage('Deploying the app') {
16+
steps {
17+
echo 'Deploying the app'
18+
}
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)