From e33e0077b233958dfaca972a699623846d3c17ba Mon Sep 17 00:00:00 2001 From: Olu Shiyanbade Date: Thu, 25 Aug 2022 18:08:39 +0100 Subject: [PATCH] Fix file --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 04280a7..d3de691 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Apache License Version 2.0 for the specific language governing permissions and limitations there under. */ -@Library(['private-pipeline-library', 'jenkins-shared', 'int-jenkins-shared']) _ +@Library(['private-pipeline-library', 'jenkins-shared', 'nxrm-jenkins-shared']) _ dockerizedBuildPipeline( prepare: { @@ -23,9 +23,9 @@ dockerizedBuildPipeline( archiveArtifacts: 'docs/*', testResults: ['**/test-output.xml'], onSuccess: { - buildNotifications(currentBuild, env, 'main') + buildNotifications(currentBuild, env) }, onFailure: { - buildNotifications(currentBuild, env, 'main') + buildNotifications(currentBuild, env) } )