Skip to content

Commit 72e8721

Browse files
committed
update
1 parent 45fabca commit 72e8721

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

jenkinsfile

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

0 commit comments

Comments
 (0)