1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-05-17 22:22:45 +02:00

19 lines
364 B
Plaintext
Raw Normal View History

@Library('piper-lib-os') _
node() {
2019-05-23 21:56:42 +02:00
stage('prepare') {
checkout scm
setupCommonPipelineEnvironment script:this
}
2019-05-23 21:56:42 +02:00
stage('build') {
mtaBuild script: this
}
2019-05-23 21:56:42 +02:00
stage('deploy') {
def mtarFilePath = commonPipelineEnvironment.getMtarFilePath()
cloudFoundryDeploy( script: this, mtaPath: mtarFilePath)
}
}