diff --git a/Jenkinsfile b/Jenkinsfile index 260ff78..a4114fb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,6 +28,11 @@ pipeline { } archiveArtifacts artifacts: '**/*.rpm', fingerprint: true } + post { + always { + cleanWs() + } + } } stage ('Build Centos 7') { agent { @@ -44,6 +49,11 @@ pipeline { } archiveArtifacts artifacts: '**/*.rpm', fingerprint: true } + post { + always { + cleanWs() + } + } } } }