Dynamically Fill Jenkins Choice Parameter With Git Branches In a Specified Repo Dynamically Fill Jenkins Choice Parameter With Git Branches In a Specified Repo jenkins jenkins

Dynamically Fill Jenkins Choice Parameter With Git Branches In a Specified Repo


I tried a couple of answers mentioned in this link, but couldn't figure out how to tell Jenkins about the user-selected branch. As mentioned in my previous comment in above thread, I had left the branch selector field empty.

But, during further investigations, I found another way to do the same thing - https://wiki.jenkins-ci.org/display/JENKINS/Git+Parameter+PluginI found this method was a lot simpler, and had less things to configure!

Here's what I configured -

  1. Installed the git parameter plugin
  2. Checked the 'This build is parameterized' and added a 'Git parameter'
  3. Added the following values: Git Parameter plugin config in the job

  4. Then in the git SCM section of the job I added the same value mentioned in the 'Name' section, as if it were an environment variable. (If you read the help for this git parameter plugin carefully, you will realize this)Branch Selector

After this I just ran the build, chose my branch(Jenkins checks out this branch before building) and it completed the build successfully, AND by choosing the branch that I had specified.


Extended Choice Parameter plugin will allow you to read the choices from a file.

Of course, now you have another problem: how to make sure the file is up-to-date (that can be done with a post-commit hook) and propagated to all the users (that can be done by placing it on a shared file server). But there may be better solutions.


I was able to achieve this result using the Jenkins Dynamic Parameter Plug-in. I used the Dynamic Choice Parameter option and, for the choices script, I used the following:

proc1 = ['/bin/bash', '-c', "/usr/bin/git ls-remote -h ssh://user@server.com/path/to/repo.git"].execute()proc2 = ['/bin/bash', '-c', "awk '{print \$2}'"].execute()proc3 = ['/bin/bash', '-c', "sed s%^refs/heads%origin%"].execute()all = proc1 | proc2 | proc3String result = all.textString filename = "/tmp/branches.txt"boolean success = new File(filename).write(result) def multiline = "cat /tmp/branches.txt".execute().textdef list = multiline.readLines()