1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-18 05:18:24 +02:00

Fix code climate issues

This commit is contained in:
SarahNoack 2019-02-07 16:42:18 +01:00 committed by GitHub
parent 214bc7a7c3
commit ed99ac6bf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,19 +29,19 @@ In this scenario, we want to show how to implement a basic continuous delivery p
@Library('piper-library-os') _ @Library('piper-library-os') _
node(){ node(){
stage('Prepare') { stage('Prepare') {
deleteDir() deleteDir()
checkout scm checkout scm
setupCommonPipelineEnvironment script:this setupCommonPipelineEnvironment script:this
} }
stage('Build') { stage('Build') {
mtaBuild script:this, buildTarget:'CF' mtaBuild script:this, buildTarget:'CF'
} }
stage('Deploy') { stage('Deploy') {
cloudFoundryDeploy script:this, deployTool:'mtaDeployPlugin' cloudFoundryDeploy script:this, deployTool:'mtaDeployPlugin'
} }
} }
``` ```