Configure JIRA Trigger Plugin for Jenkins multi branch pipeline - jenkins

I have Jenkins Mutibranch pipeline. I want to integrate my Jira with one of multibranch project. I have installed the JIRA Trigger Plugin and configured Webhook in Jira. however, when I checked in my Jenkins job it does not show me the B***uild when an issue is updated in JIRA*** but it shows when I go to View Configuration in the particular branch. it allows me to select the Build when an issue is updated in JIRA but there is no option to save the changes. I know this might be a reason the option is view only. but how can I configure this?
Is anyone configured JIRA Trigger Plugin with Jenkins mutibranch project where using Jenkinsfile? and what is the correct way of integrating this?
Should I do some coding in the Jenkins file to get this done?

Related

How can you trigger a Jenkins master build from GitHub issue comments?

We are allowing customers to manage infrastructure using Jenkins by specifying configuration in GitHub; when the configuration is merged to master a deployment pipeline runs to reconcile the configuration.
If there is an issue with the pipeline we want to raise this by creating an issue in GitHub describing what went wrong and allowing customers to comment /apply to rerun the pipeline. We are currently able to trigger the pipeline with PR comments (after ticking the Issue comments box in our webhook configuration) but issue comments are not being picked up.
Is it possible to trigger a pipeline on issue comments in Jenkins?
Jenkins version: 2.219

Jenkins and bitbucket web hooking

I'm trying to configure webhook between Jenkins and Bit bucket for a particular branch.
After this, Jenkins job should start if any changes happen in that specific branch, but the first job is triggering when changes happen for any branch.
After that, webhook is working as expected. It will create a problem to copy the existing job as new and forget to check the job trigger.
Is there anyone who faced any issues like this or am I doing any wrong configuration to setup webhook?
By using this Bitbucket Plugin you can specify the branch name as an option in your job configuration.

Create a branch with Jenkins with the Jira Issue Key

I'm building a Continous Integration environment with Jira, Jenkins and GitLab. One of the things I need is that every time an issue is created in Jira, a branch is created in Gitlab, with the same name as the issue of Jira, using a job by Jenkins.
Using the Jira trigger Plugin for Jenkins I get that every time an issue is created, the job is launched to create the branch, but what I can not do is read the name of the issue from the jira trigger to name the gitlab branch. Do you know what I can do?
I solved it using the JIRA_ISSUE_KEY variable that it's sent to Jenkins.

Integration Jira Cloud with Jenkins

I want to integrate Jenkins with JIRA Cloud.
I want Jenkins to start build job when i'm updating Issue Status in JIRA.
example: when the issue in jira is going from status IN PROGRESS to DEV COMPLETED, I want Jenkis to start a build.
regards, Maja
Usually the flow is a little bit different.
After you done with the development you should add JIRA ticket number in commit.
Then create pull request (if you use Git as VCS) and merge it to main branch.
Git server will trigger build on the Jenkins side (you should find Jenkins plugin for your case).
After build is done there Jenkins can send update status to Jira (via Jenkins JIRA plugin
There are some variations. For example you want to allow merge only when build on Jenkins was successful. In this case JIRA update should be performed by Git service.
Thank you for your fast response, but we got different situation than the given answer. I will try to explain clearly.
1. we got Jira on cloud that successfully communicate with Gitlab. (there is a build in jenkins after commit in Jira)
2. and we got one test Jenkins on our local machine
Jira is configured in Jenkins and we got all needed plugins in Jenkins.
Now we want, with every changed status on the issue in Jira (from IN PROGRESS to DEV COMPLETED), Jenkins to make an automatic build on the job.
Additionaly, Is there any Jenkins Plugin for Jira CLOUD that could help us?
At this time, there is no Jenkins plugin / add-on for JIRA cloud, even though it is in high demand. It is rumored there may be one coming out in November / December 2017 as a beta.
If you are using Bitbucket, I'd recommend checking out Pipelines. Or, take a look at Bamboo or TeamCity as these tools integrate directly with JIRA Software Cloud.

jenkins jira integration using ZAPI and zephyr

i have installed Zephyr plugin in jenkins and ZAPI,Zephyr plugin in jira and able to establish the connection as well
but in drop down am not able view the jira project
can anyone help me to resolve this issuein post build not able to view the project name in drop down
You still have to complete the global configuration for Zephyr in Jenkins.
Should be somewhere in Manage Jenkins --> Configure System --> search for Zephyr here.
I've found the plugin a little non-intuitive. Even if you have configured the global configuration section, upon adding the the Zephyr component to a job for the first time, you must save the job. When you edit the job you'll be able to select the project, cycle etc.

Resources