From af6729642c1e0d5540fad2d46aaa931bbb5cc1e5 Mon Sep 17 00:00:00 2001 From: Olu Shiyanbade Date: Thu, 25 Aug 2022 18:13:27 +0100 Subject: [PATCH] Update build notifications call --- Jenkinsfile | 4 ++-- Jenkinsfile-Release | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d3de691..0f00831 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,9 +23,9 @@ dockerizedBuildPipeline( archiveArtifacts: 'docs/*', testResults: ['**/test-output.xml'], onSuccess: { - buildNotifications(currentBuild, env) + nxrmBuildNotifications(currentBuild, env) }, onFailure: { - buildNotifications(currentBuild, env) + nxrmBuildNotifications(currentBuild, env) } ) diff --git a/Jenkinsfile-Release b/Jenkinsfile-Release index bb7a8cc..222d649 100644 --- a/Jenkinsfile-Release +++ b/Jenkinsfile-Release @@ -88,10 +88,10 @@ dockerizedBuildPipeline( } }, onSuccess: { - buildNotifications(currentBuild, env) + nxrmBuildNotifications(currentBuild, env) }, onFailure: { - buildNotifications(currentBuild, env) + nxrmBuildNotifications(currentBuild, env) } )