Added Jenkinsfile

This commit is contained in:
Rihong 2018-03-23 16:49:32 -04:00
parent 9215e86b56
commit 3c69fcecd0
1 changed files with 10 additions and 0 deletions

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Example Build') {
steps {
echo 'Hello World'
}
}
}
}