mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-05-17 22:22:45 +02:00
21 lines
336 B
Plaintext
21 lines
336 B
Plaintext
|
@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)
|
||
|
}
|
||
|
}
|