You've already forked sap-jenkins-library
mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-12-22 00:19:30 +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)
|
||
|
|
}
|
||
|
|
}
|