1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-06-15 00:05:11 +02:00

review fixes

This commit is contained in:
Roland Stengel
2019-05-23 21:56:42 +02:00
parent 5aa0a35934
commit b65f0a2461
7 changed files with 83 additions and 93 deletions

View File

@ -2,20 +2,17 @@
node() {
stage('prepare') {
stage('prepare') {
checkout scm
setupCommonPipelineEnvironment script:this
}
checkout scm
stage('build') {
mtaBuild script: this
}
setupCommonPipelineEnvironment script:this
}
stage('build') {
mtaBuild script: this
}
stage('deploy') {
def mtarFilePath = commonPipelineEnvironment.getMtarFilePath()
cloudFoundryDeploy( script: this, mtaPath: mtarFilePath)
}
}
stage('deploy') {
def mtarFilePath = commonPipelineEnvironment.getMtarFilePath()
cloudFoundryDeploy( script: this, mtaPath: mtarFilePath)
}
}