I want Jenkins to automatically find and run the test suite for every branch that is part of an open pull request. Is this possible with some Jenkins plugin I have not found?

link|improve this question

I'm pretty sure it's possible to get Jenkins to check every branch. However, +1 for this question as I'd love to have this feature. – Steve Smith Dec 20 '11 at 22:59
We use the "fork early, fork often" mentality so we would have a ton of unnecessary test executions. I would really love to have the functionality of only seeing "branches preparing for integration" being tested. – mvid Dec 20 '11 at 23:01
feedback

1 Answer

One method that should work is you could rename the branch when it is "prepared for integration" and ready to be tested.

A naming convention like prep/my_feature.

Then in the Jenkins git plugin you can configure the branch names that you want it to look at for building. You can have it match 'prep/*'.

We used to do this for all our feature branches using a prefix of 'dev/' to mark the feature branches that should have the autobuild run for them. Seems to work pretty well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.