This commit is contained in:
Olu Shiyanbade 2022-08-25 18:08:39 +01:00
parent 93553957c5
commit e33e0077b2

6
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * "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. * 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( dockerizedBuildPipeline(
prepare: { prepare: {
@ -23,9 +23,9 @@ dockerizedBuildPipeline(
archiveArtifacts: 'docs/*', archiveArtifacts: 'docs/*',
testResults: ['**/test-output.xml'], testResults: ['**/test-output.xml'],
onSuccess: { onSuccess: {
buildNotifications(currentBuild, env, 'main') buildNotifications(currentBuild, env)
}, },
onFailure: { onFailure: {
buildNotifications(currentBuild, env, 'main') buildNotifications(currentBuild, env)
} }
) )