From 780ed2ff29f33780fdb2c514ae7853e0a1c66072 Mon Sep 17 00:00:00 2001 From: Matvey Date: Wed, 4 Aug 2021 07:22:40 -0700 Subject: [PATCH] fix --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f2046cc..6ba7ec8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -197,12 +197,12 @@ pipeline { emailext body: "${currentBuild.currentResult}: Job ${env.JOB_NAME} build ${env.BUILD_NUMBER}\n More info at: ${env.BUILD_URL}", recipientProviders: [[$class: 'DevelopersRecipientProvider'], [$class: 'RequesterRecipientProvider']], subject: "Jenkins Build ${currentBuild.currentResult}: Job ${env.JOB_NAME}" - }/* + } always { deleteDir() } cleanup { cleanWs() - }*/ + } } }