Re: How to force an upstream job to be green

2015-01-10 Thread Christoph Kutzinski
If I understand your requirements correctly, I would use the build flow plugin: https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin Make the controller job a build flow job which calls the other 3 jobs in a guard-rescue block each and let them re-run once if they fail in the rescue b

Re: How to force an upstream job to be green

2015-01-10 Thread Christoph Kutzinski
Much better of course to use the retry statement of the build-flow plugin: retry ( 3 ) { build( "this_job_may_fail" ) } Am 10.01.2015 um 11:15 schrieb Christoph Kutzinski: If I understand your requirements correctly, I would use the build flow plugin: https://wiki.jenkins-ci.org/display/JEN

Re: Parameterized Job - Getting Jobs and build ids from drop down list

2015-01-10 Thread Julián Lastiri
Hi, I found the Uno-Choice Plug-in and managed to do what I wanted with some groovy scripting. On Saturday, January 10, 2015 at 12:13:32 AM UTC-3, Julián Lastiri wrote: > > Hi, I have a job that copies artifacts via ssh to a storage server and I >

Re: Oddities in display formatting...

2015-01-10 Thread James Nord
On 09/01/2015 21:29, Daniel Beck wrote: ISSUE #1 Is there a way to make it not wrap the right pane below the left pane when the window size is smaller and instead make it stay in position and scroll to the right instead? That's a feature. Make the window wider, Jenkins needs the space to show

groovy compilation error when submitted with 'curl' comman

2015-01-10 Thread rchen
Hi, I am trying to submit following groovy script to a Jenkins server with curl command, but got compilation error. It has no problem if I run it in Jenkins script console. Here is my groovy script 'groovy5': script=for (item in Jenkins.instance.items) { println "item.class.name";