From 9a90bbd0d5a5b9f40a70d02b905cd0de951cf316 Mon Sep 17 00:00:00 2001 From: Victor Martinez Date: Thu, 9 May 2024 21:09:09 +0200 Subject: [PATCH] ci(jenkins): remove post-build notifications (#39483) (cherry picked from commit 07892f1cf5db6a7aa15ac1b47116585aa3e7c000) --- Jenkinsfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 181b33e1fd6..604e26993e6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -199,16 +199,6 @@ COMMIT=${env.GIT_BASE_COMMIT} VERSION=${env.VERSION}-SNAPSHOT""") archiveArtifacts artifacts: 'packaging.properties' } - cleanup { - // Required to enable the flaky test reporting with GitHub. Workspace exists since the post/always runs earlier - dir("${BASE_DIR}"){ - notifyBuildResult(prComment: true, - slackComment: true, - analyzeFlakey: !isTag(), jobName: getFlakyJobName(withBranch: getFlakyBranch()), - githubIssue: isGitHubIssueEnabled(), - githubLabels: 'Team:Elastic-Agent-Data-Plane') - } - } } }