Multi branch pipeline with bitbucket build status notifier plugin in jenkins

孤者浪人 提交于 2020-04-10 03:44:53

问题


I have a multi branch pipeline job in my jenkins server and I tried to notify the build status using bitbucket cloud build status notifier plugin.

I configured the settings provided in notifier plugin and added the notifier script function in the beginning and end of my Jenkinsfile.

Jenkinsfile:

node {
    stage 'Build'
        bitbucketStatusNotify ( buildState: 'INPROGRESS' )
        .......
        .......
        bitbucketStatusNotify ( buildState: 'SUCESS' )
}

When I run the jenkins build it trigger the notifier script and return done statement in the console.

Entering stage Build
Proceeding
[Pipeline] bitbucketStatusNotify
Sending build status INPROGRESS for commit 84bf788cc9ccc8c31df5719da383cab003c97582 to BitBucket is done!
[Pipeline] bat
[master] Running batch script

But the notifier icon is not visible or set in the bitbucket cloud.

Is there anything I missed to configure?


回答1:


documentation/releasenotes at https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+Cloud+Build+Status+Notifier+Plugin

says Using Jenkins 2 pipeline Add the following at the beginning of your Jenkinsfile:

bitbucketStatusNotify ( buildState: 'INPROGRESS' )

And add the following at the ending of your Jenkinsfile:

bitbucketStatusNotify ( buildState: 'SUCCESSFUL' )

the readme on github is more complete: https://github.com/jenkinsci/bitbucket-build-status-notifier-plugin



来源:https://stackoverflow.com/questions/39226643/multi-branch-pipeline-with-bitbucket-build-status-notifier-plugin-in-jenkins

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!