Re: Build based on tag

2012-10-25 Thread letstestthis
Sorry about that, I just had to trigger a new build and then this worked fine. On Thursday, October 25, 2012 11:20:51 AM UTC-3, letstestthis wrote: > > This is exactly what I was looking for, I have installed this plugin. The > only issue I am having is that I cant for some reason actually appr

Re: Build based on tag

2012-10-25 Thread letstestthis
This is exactly what I was looking for, I have installed this plugin. The only issue I am having is that I cant for some reason actually approve the build :). I put myself as approver but for some reason there is no option. Any idea what I may be doing wrong here? On Wednesday, October 24, 20

Re: Build based on tag

2012-10-24 Thread Christopher Orr
Could be a job for the Promoted Builds Plugin: https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Plugin That lets you define a manual step on a job, where you have to go in and click "Approve", e.g. to indicate that you've tested it, which can then trigger another job. See also this

Re: Build based on tag

2012-10-24 Thread vf
We are using git post-receive hook to trigger jenkins build via jenkins ssh daemon. If the push created a new branch/tag, the hook will trigger a jenkins job to generate a standard job for the new branc/tag, and kick off a build; otherwise it will trigger build of an existing for the branch/tag.

Build based on tag

2012-10-24 Thread letstestthis
Hi I am trying to set up a Jenkins job that will build based on tags. For example, I go in and tag a build in jenkins as tested. I want to create a separate job that will automatically take builds that are tagged as tested to build. Is this possible? If so, how?