1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +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

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