Skip to content

Commit

Permalink
Added Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ywyt738 committed Apr 25, 2018
1 parent 2240c9c commit 9f4e7cd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage('build') {
steps {
echo 'build'
}
}
stage('test') {
steps {
echo 'test'
}
}
stage('depoly') {
steps {
echo 'depoly'
}
}
}
}

0 comments on commit 9f4e7cd

Please sign in to comment.