1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-05-19 22:23:07 +02:00
Roland Stengel 523f603071 review documentation
- clear separation of README.md from
  https://sap.github.io/jenkins-library/
- enhanced https://sap.github.io/jenkins-library/home
- introduction of guided tour
2019-05-23 09:21:41 +02:00

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)
}
}