Update build notifications call

This commit is contained in:
Olu Shiyanbade 2022-08-25 18:13:27 +01:00
parent e33e0077b2
commit af6729642c
2 changed files with 4 additions and 4 deletions

4
Jenkinsfile vendored
View File

@ -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)
}
)

View File

@ -88,10 +88,10 @@ dockerizedBuildPipeline(
}
},
onSuccess: {
buildNotifications(currentBuild, env)
nxrmBuildNotifications(currentBuild, env)
},
onFailure: {
buildNotifications(currentBuild, env)
nxrmBuildNotifications(currentBuild, env)
}
)