Re: Can I add a "publish" button to a build page

2016-07-12 Thread Michael Kobit
This above (input with timeout) is what we are currently doing. When the milestone step is done (see https://issues.jenkins-ci.org/plugins/servlet/mobile#issue/JENKINS-27039), I believe we will switch to using that instead. On Tue, Jul 12, 2016, 16:25 Vincent Latombe

Re: Can I add a "publish" button to a build page

2016-07-12 Thread Vincent Latombe
You could use an input step ( https://jenkins.io/doc/pipeline/steps/pipeline-input-step/#code-input-code-wait-for-interactive-input) to require manual validation. Wrap it in a timeout https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/#code-timeout-code-enforce-time-limit to clean-up

Re: Can I add a "publish" button to a build page

2016-07-12 Thread Greg Smith
I have exactly this same need, but with pipeline builds. The Promotion plugin works awesome for regular builds, but unfortunately does not work with pipeline builds. I created this Jira to track enhancing the plugin to support pipeline builds:

Re: Can I add a "publish" button to a build page

2016-07-12 Thread Eric Pyle
You might take a look at the Promoted Builds plugin. It allows you to manually "promote" a particular build, and trigger other actions. It's designed exactly for this sort of situation. Eric On 7/12/2016 8:57 AM, Jonathan Hodgson wrote: Hi, If a build is successful (compiled correctly,

Can I add a "publish" button to a build page

2016-07-12 Thread Jonathan Hodgson
Hi, If a build is successful (compiled correctly, passed all tests), I may then want to send it out to beta testers. Which means copying the built binary to a location where they can find it, and sending out emails. I don't want to do this for exery successful build though. A sensible