Updated Jenkinsfile

This commit is contained in:
Tan Yong Heng 2017-07-21 17:24:43 +08:00
parent 925ea66595
commit b05ee56db1

6
Jenkinsfile vendored
View file

@ -4,6 +4,12 @@ pipeline {
stage('test') {
steps {
echo 'hello world'
sh 'mvn compile'
}
}
stage('done') {
steps {
echo 'Done!!!'
}
}
}