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 da502df5b7 review fixes
2019-05-28 18:18:45 +02:00

18 lines
268 B
Groovy

@Library('piper-lib-os') _
node() {
stage('prepare') {
checkout scm
setupCommonPipelineEnvironment script:this
}
stage('build') {
mtaBuild script: this
}
stage('deploy') {
cloudFoundryDeploy script: this
}
}