Re: How to set the host where my hudson job to run?

2012-05-30 Thread Arun Kumar
Thanks Rob. Actually i will be having many nodes and depending on the input parameter i would pick the appropriate node and run. Above example was just for one instance. On Wednesday, 30 May 2012 19:44:10 UTC+5:30, Mandeville, Rob wrote: > > I would make two jobs. The first job decides where

Re: Setting Build step via groovy

2012-05-30 Thread Dirk Kuypers
Hi, only minutes after writing this mail and googling for hours before I found it: getBuilders().add()... Sorry for the noise Dirk 2012/5/30 Dirk Kuypers : > Hi, > > I am trying to generate n-dimensional unit test jobs programmatically > via groovy scripting. As I am new to groovy and Jenkins AP

/etc/init.d/jenkins missing

2012-05-30 Thread Kamal Ahmed
Well, I removed jenkins via ' apt-get remove jenkins then manually removed /etc/init.d/jenkins Now when i install Jenkins  via qpt-get install jenkins, it does not restore the /etc/init.d/jenkins file back. Any suggestions ? Thanks, -Kamal.

Re: Trigger downstream jobs depending upon the some input parameter

2012-05-30 Thread OSUBeavBane
Hi Arun, So, you can launch jobs programatically within another job. So within your job just set up an if(x=1) launch J2; if(x=2) launch J3; For more info on how to programatically launch a job go to "{JENKINS_URL}/job/{JOB_NAME}/api". -OSUBeavBane On May 29, 11:03 pm, Arun Kumar wrote: > Hi

Complex Parameters and the Configure Page

2012-05-30 Thread OSUBeavBane
I'm a little bit of a noob to Jenkins and I'm having trouble discribing this so bear with me. For a while now we've been using Jenkins as a launching platform for our QA testing. We have a virtual machine that we revert and then we install various products on the machine. To give QA members flexib

Re: Clearcase Plugin uses -snapshot even when I ask for Dynamic

2012-05-30 Thread lfast
OK, I think I answered my own issue. It looks like this plugin is not capable of creating Dynamic views. If the view already exists it works OK.

Clearcase Plugin uses -snapshot even when I ask for Dynamic

2012-05-30 Thread lfast
Am I doing something wrong? In configuring the UCM Clearcase Plugin setup I selected Dynamic View but the mkview command is still generated as: cleartool mkview -snapshot ...

Setting Build step via groovy

2012-05-30 Thread Dirk Kuypers
Hi, I am trying to generate n-dimensional unit test jobs programmatically via groovy scripting. As I am new to groovy and Jenkins API it took some time to figure some things but I made good progress. Currently I am stuck with setting a build step. I would like to set the build step of the created

RE: How to set the host where my hudson job to run?

2012-05-30 Thread Mandeville, Rob
I would make two jobs. The first job decides where the second job should run, and then invokes it with the appropriate node argument. --Rob From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Arun Kumar Sent: Wednesday, May 30, 2012 2:20 AM To: jenkins

Re: Key board shortcut

2012-05-30 Thread Jesse Farinacci
Greetings, On Wed, May 30, 2012 at 2:05 AM, Suri wrote: > I have installed Keyboard Shortcut plug-in in my Jenkins LTS version > 1.447.1 The current release of this plugin requires 1.455. The development trunk requires 1.461. Sorry, but this actually is mandatory and you're seeing why.. -Jesse

RE: Workspace cleanup after job removal

2012-05-30 Thread Bertrand Renuart
For those that are interested, I solved the issue by writing a small Groovy script that gets executed periodically. This script goes through the online slaves, list the content of their workspaces and delete any subdirectories whose name does not match any existing job configuration. It must be