How to force Jenkins to rebuild a branch?
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?
One Solution collect form web for “How to force Jenkins to rebuild a branch?”
You can do that using Git Parameter Plugin. After installing this plugin you have to :
- tranform your job to a Parametrized job
- add a Git parameter named “branches”,
- select “Branch” for “Parameter Type” field
- enter a regex that match all branches you want to watch
- use the branches parameter into Git “branches to build” field
- now when you launch your build you can select the branch to build