Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to force Jenkins to rebuild a branch?

Tags:

git

jenkins

How do you force Jenkins and Git to rebuild a branch it thinks it has already built?

We have Jenkins and the Git plugin set up to build our repository branches and merge them back to our repo on any SCM change. But this means, naturally, that Jenkins will ONLY build on an SCM change.

For example, say you push branch A to your origin repo. Jenkins build fails because it depends on branch B which was not built and integrated yet. Jenkins builds branch B successfully, but now the only way to get it to build branch A again (which should now work) is to introduce an artificial change to branch A so that Jenkins will think it's "new".

Isn't there a better way to do this?

like image 573
user3705 Avatar asked Mar 11 '14 00:03

user3705


1 Answers

You can do that using Git Parameter Plugin. After installing this plugin you have to :

enter image description here

  1. tranform your job to a Parametrized job
  2. add a Git parameter named "branches",
  3. select "Branch" for "Parameter Type" field
  4. enter a regex that match all branches you want to watch

enter image description here

  1. use the branches parameter into Git "branches to build" field

enter image description here

  1. now when you launch your build you can select the branch to build
like image 178
Mohamed EL HABIB Avatar answered Oct 10 '22 02:10

Mohamed EL HABIB