Update Jenkinsfile

This commit is contained in:
Tan Yong Heng 2017-07-22 20:50:34 +08:00 committed by GitHub
parent 86d8721116
commit 3759271aa6

8
Jenkinsfile vendored
View file

@ -1,9 +1,15 @@
pipeline { pipeline {
agent { docker 'maven:3.3.3' }
stages { stages {
stage('prebuilt') { stage('prebuild') {
steps { steps {
sh 'whoami' sh 'whoami'
} }
} }
stage('build') {
steps {
sh 'mvn --version'
}
}
} }
} }