Skip to content

Commit cfe5429

Browse files
committed
Pilot commit
1 parent db4e1a9 commit cfe5429

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Jenkinsfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('Build') {
5+
steps {
6+
echo 'Build Success'
7+
}
8+
}
9+
stage('Deploy') {
10+
steps {
11+
echo 'Deployed'
12+
}
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)