1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/documentation/docs/samples/cloud-cf-helloworld-nodejs/Jenkinsfile
Roland Stengel b65f0a2461 review fixes
2019-05-23 21:56:42 +02:00

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