mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
19 lines
364 B
Groovy
19 lines
364 B
Groovy
@Library('piper-lib-os') _
|
|
|
|
node() {
|
|
|
|
stage('prepare') {
|
|
checkout scm
|
|
setupCommonPipelineEnvironment script:this
|
|
}
|
|
|
|
stage('build') {
|
|
mtaBuild script: this
|
|
}
|
|
|
|
stage('deploy') {
|
|
def mtarFilePath = commonPipelineEnvironment.getMtarFilePath()
|
|
cloudFoundryDeploy( script: this, mtaPath: mtarFilePath)
|
|
}
|
|
}
|