mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
18 lines
268 B
Groovy
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
|
|
}
|
|
}
|