Update Jenkinsfile

This commit is contained in:
Tan Yong Heng 2017-07-22 20:36:18 +08:00 committed by GitHub
parent 9ef16bd856
commit 86d8721116

6
Jenkinsfile vendored
View file

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