Added Jenkinsfile

This commit is contained in:
Tan Yong Heng 2017-07-21 12:15:27 +08:00
parent 101c9dc690
commit 570e939cae

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('') {
steps {
echo 'hello world'
}
}
}
}