Re: Triggering the build from Git tag

2013-05-28 Thread Christopher Orr
There's an example job configuration [1] for this which you can download with the Recipe Plugin [2]. Though I believe you can only do very basic wildcard matching, e.g. "jenkins-build/*" works as a tag name, but not "jenkins-build-*". Regards, Chris [1]: https://github.com/jenkinsci/submitt

Re: Triggering the build from Git tag

2013-04-19 Thread Vishal Gupta
Hi Jared, Do you have any solution for this ? Please let me know. Thanks in advance! On Thursday, April 18, 2013 9:12:18 PM UTC+5:30, Jared Griffith wrote: > > Ooh, I like this question. Is there? > > > On Thu, Apr 18, 2013 at 7:10 AM, Vishal Gupta > > > wrote: > >> I want to trigger the bu

Re: Triggering the build from Git tag

2013-04-18 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
The most practical way to do this would be to create the tags in their own namespace in the repository. Something like: $ git tag jenkins/buildA Then when you setup your Jenkins job with the Git plugin, you can use a refspec that only pulls the 'jenkins' namespace from the repository; the job w

Re: Triggering the build from Git tag

2013-04-18 Thread Jared Griffith
Ooh, I like this question. Is there? On Thu, Apr 18, 2013 at 7:10 AM, Vishal Gupta wrote: > I want to trigger the build in Jenkins if a tag in GIT contains some > specific string. > Example : If tag contain string "JENKINS_BUILD" , then jenkins should > trigger the build. > How can we achieve t