mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-05-19 22:23:07 +02:00
- clear separation of README.md from https://sap.github.io/jenkins-library/ - enhanced https://sap.github.io/jenkins-library/home - introduction of guided tour
21 lines
336 B
Groovy
21 lines
336 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)
|
|
}
|
|
} |