RE: Email notification recipients are not saved

2013-05-21 Thread Alex Earl
I don't know what Build Settings is, what type of job are you using? Free style? Maven? Something else? Also, can you remind me what version of Jenkins you are using? Sent from my Windows Phone -- From: Antti Ollilainen Sent: 5/20/2013 22:39 To:

Re: Email notification recipients are not saved

2013-05-21 Thread Antti Ollilainen
It's Jenkins 1.515 on Windows Server 2008, running standalone, started as a service. The job type is a Maven 2/3 project. I am using environment variables defined in Configure System -- Global Properties as the email notification recipients. I've tried this with the latest Chrome and IE10. On

RE: Email notification recipients are not saved

2013-05-21 Thread Alex Earl
Can you upload you global and job config XML files somewhere? Sent from my Windows Phone -- From: Antti Ollilainen Sent: 5/20/2013 23:11 To: jenkinsci-users@googlegroups.com Cc: Antti Ollilainen Subject: Re: Email notification recipients are not saved It's Jenkins

Re: [1.509.1 LTS] Massive performance issues

2013-05-21 Thread Steffen Breitbach
Hi Arnaud! On 19.05.2013 11:48, Arnaud Héritier wrote: I have such issue and downgraded back to 1.480.3 LTS. I'm also looking into this as a possible fix for our current situation. Did you face any issues after downgrading to 1.480.3 LTS ? Regards Steffen -- You received this message

Mass Jenkins job updates

2013-05-21 Thread teilo
I use option 4 - Jenkins enterprise This won't be a drop in solution for you as your jobs need to be templatized before you can update them by just tweaking the template. You could do this with some groovy but that has drawbacks if you mess up your groovy. But Jenkins enterprise has other

RE: Mass Jenkins job updates

2013-05-21 Thread Matthew.Webber
I often find the low-tech approach works. For simple bulk changes I edit the config.xml files using the bash command line (this is Linux, obviously). Something like this: cd /path/to/Jenkins-home/jobs/ find -mindepth 1 -maxdepth 1 -type d -name jobname.pattern.of.interest* | sort | xargs -i

post build task

2013-05-21 Thread 06virg
Hi, This could be a common issue, but i could not find correct solution. My requirement is based build status whether Fail or success, i should trigger windows batch file and pass build status as parameter which does some activity. I am using Post build task plugin. I have added two tasks

multiscm plugin - mark a repository as primary?

2013-05-21 Thread James Gray
Hi all, I'm creating builds in Jenkins with the Job DSL plugin. This looks at my repository (Stash) and creates build configuration for that repository based on its name. At the moment, I have it so that every build pulls in two git repositories with the multiscm plugin. I keep my Jenkins

Re: How to set up Jenkins on Mac Pro with Parallels vm slaves?

2013-05-21 Thread Pete Akey
You can ask Jenkins to run commands just as you would from the command line. I'd use whichever you're more comfortable with. Here are some CLI parameters for VirtualBox: http://www.virtualbox.org/manual/ch09.html Here's an entire CLI guide for Parallels:

RE: Mass Jenkins job updates

2013-05-21 Thread Bob Bick
Thank you for the response. Just so I understand what you are saying... If you create a job based on a template, and then you make a change to the template, all jobs are automatically updated based on the template? I have not tried this; however, I would assume that you'd need to modify the

Re: Mass Jenkins job updates

2013-05-21 Thread teilo
Hi Bob, Just so I understand what you are saying... If you create a job based on a template, and then you make a change to the template, all jobs are automatically updated based on the template? Yes - if your jobs are based on that template then they are all automatically updated. I

Re: Mass Jenkins job updates

2013-05-21 Thread teilo
You can add new parameters, so long as you handle the fact that the parameter may be null in the transformer used by the template. There's a bit about this in my presentation from the Jenkins User event in London, and the online docs from cloudbees should give you more details of this. Others

Re: How to set up Jenkins on Mac Pro with Parallels vm slaves?

2013-05-21 Thread David Burson
Thanks very much, Pete! I'll give that a shot. David On Tue, May 21, 2013 at 8:44 AM, Pete Akey pja...@gmail.com wrote: You can ask Jenkins to run commands just as you would from the command line. I'd use whichever you're more comfortable with. Here are some CLI parameters for

RE: Mass Jenkins job updates

2013-05-21 Thread Bob Bick
Thanks James. I am trying out the CloudBees template approach using Groovy template transformations. Overall, it seems nice; however, it is not clear how to access attributes in Groovy code. The CloudBees doc shows this trivial example of adding Groovy code: foo % for (int i=0; i100;

irc chat room available ?

2013-05-21 Thread Z W
Hi All Is there a jenkins irc chat room available for the user group ? Thanks -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: irc chat room available ?

2013-05-21 Thread Adam PAPAI
Sure on freenode there is a #jenkins channel. Z W May 21, 2013 9:40 PM Hi AllIs there a jenkins irc chat room available for the user group ?Thanks -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from

Re: Mass Jenkins job updates

2013-05-21 Thread teilo
its just someAttribute not $someAttribute (although my groovy isn't the best and $someAttribute could also be correct syntax :/ ) You need to make sure that the template creates valid XML that represents a job that is known to Jenkins. Might be best to start by loading a an existing job and

Suggestions for advanced git/jenkins build integration

2013-05-21 Thread Owen B. Mehegan
My team has 30+ git repos, which all use the same post-receive hook to trigger Jenkins build jobs when people push a commit to the 'master' branch (the hook maintains a mapping of repo - Jenkins job). Work done in any other branch does not trigger a build automatically, but developers can

Re: Jenkins-job-builder - getting started problems

2013-05-21 Thread lfast
Thanks. I eventually figured out that even after failing to load, JJB thinks the job is up to date. My work-around was to disable the up-to-date check. But it took some digging to find the active python code in

Re: Suggestions for advanced git/jenkins build integration

2013-05-21 Thread Stuart Montgomery
Comments inline… On May 21, 2013, at 3:15 PM, Owen B. Mehegan omehe...@gmail.com wrote: My team has 30+ git repos, which all use the same post-receive hook to trigger Jenkins build jobs when people push a commit to the 'master' branch (the hook maintains a mapping of repo - Jenkins job).

RE: Unable to start ssh slave from OSX master

2013-05-21 Thread Todd Greer
In case anyone comes across this in web searches, I've tried many different things, and now suspect that using an OSX master with ssh slaves may simply not be a workable configuration, for unknown reasons. I've seen plenty of reports that it does work well with a Linux master, so that is my

Re: Unable to start ssh slave from OSX master

2013-05-21 Thread Chanda Unmack
I came to that conclusion in our environment, for many other reasons. I inherited the setup which had a master on osx, with slaves connected via ssh (linux osx) as well as jnlp (windows) which is why I didn't feel that I could offer up any help. The only thing I wasn't clear on with your set up

Is there a way to pass in the SSH Site value as a parameter?

2013-05-21 Thread lfast
I would like to create a generic Job that I can apply to multiple servers. These servers are not Jenkins Agents so I'm using Execute shell script on remote host using SSH Is there any way to set the SSH Site value from a passed in parameter? -- You received this message because you are

How would you use a List to invoke a job multiple times?

2013-05-21 Thread lfast
I'm looking to take a dynamically generated list of values and run a job multiple times with each individual value. Suggestions? -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group and stop receiving emails from it,