AW: Prevent job from when a particular job is running

2013-08-19 Thread Steffen Breitbach
Hi Jared! > Is there a way to prevent job b from running if job a is running? Beside the other solution you might want to give the "Throttle Concurrent Builds" plugin a look. Regards Steffen -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group.

http://updates.jenkins-ci.org/ DOWN

2013-08-19 Thread nicolas de loof
Who can fix this ? -- 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 jenkinsci-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.c

Re: http://updates.jenkins-ci.org/ DOWN

2013-08-19 Thread nicolas de loof
and is UP now 2013/8/19 nicolas de loof > Who can fix this ? > -- 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 jenkinsci-users+unsubscr...@googlegroups.com.

Jenkins and Selenium.

2013-08-19 Thread Nateshkumar NS
I am using Jenkins ver. 1.523 and downloaded selenium version 2.35.0 I have configured SeleniumHQ htmlsuite Run to run HTML suite created for my application. Jenkins launches Selenium after build (maven) but I get a 'server not found' error as it expects my application

Weblogic and Jenkins

2013-08-19 Thread Nateshkumar NS
Configured weblogic in Jenkins. java.lang.RuntimeException *deploy *command completed abnormally (exit code = 1) at org.jenkinsci.plugins.deploy.weblogic.task.DeploymentTaskServiceImpl.perform(DeploymentTaskServiceImpl.java:198) 1 out of 20 deployments are successful and not others. Is there

Re: Prevent job from when a particular job is running

2013-08-19 Thread Jared Griffith
Isn't there already a native configuration option that works per node on how many concurrent builds each can run? On Mon, Aug 19, 2013 at 12:29 AM, Steffen Breitbach < steffen.breitb...@1und1.de> wrote: > Hi Jared! > > > Is there a way to prevent job b from running if job a is running? > > Besid

How to download plugins from Linux shell

2013-08-19 Thread Christopher Carlson
Is it possible to download plugins using a bash shell script? Our company would like to be able to automate setting up a build machine, and we want to limit the amount of steps required. They want something like: 1. Install Jenkins 2. svn co .../stable/jenkins 3. ./InstallPlugins Thi

Re: How to download plugins from Linux shell

2013-08-19 Thread Mark Waite
The Jenkins command line interface can install plugins and restart the Jenkins server. Refer to https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI Mark Waite > > From: Christopher Carlson >To: jenkinsci-users@googlegroups.com >Sent: Monday, August 19, 20

RE: How to download plugins from Linux shell

2013-08-19 Thread Christopher Carlson
It appears to me that this requires Jenkins to be installed and running. We don't have a head on our Jenkins server, so our only access is ssh or the Jenkins web page. I'm trying to make this as simple as possible. I like the cli concept, but I also want to avoid starting Jenkins until the bu

Re: How to download plugins from Linux shell

2013-08-19 Thread Mark Waite
You're correct that the Jenkins server must be running in order to use the command line interface.  I've preferred to use Jenkins to configure Jenkins, since that assures the configuration is kept consistent through Jenkins' own internal checks, and always takes the most recent Jenkins plugins.

Re: Adding SSH Site: Cannot connect

2013-08-19 Thread Dolio D
I'm having this same issue, can't seem to find any solution to this anywhere on the web or docs. On Tuesday, April 30, 2013 2:38:11 AM UTC-4, Sverre Moe wrote: > > Under Jenkins configuration I try to add a SSH site under SSH remote hosts. > > After adding the host, port, username and password I

RE: How to download plugins from Linux shell

2013-08-19 Thread Christopher Carlson
I really appreciate your quick response. My goal was to make this process as easy as possible. I'm presuming some non-technical person might get charged with the task of creating a new server in Timbuktu. Requiring him to open a browser, connect to Jenkins, log in, download jenkins-cli.jar, t

Re: Prevent job from when a particular job is running

2013-08-19 Thread Daniel Beck
Yes, it's the number of executors. Of course, this requires jobs a and b to run on the same node, and prevents jobs c, d, ... from running on that node (or they'll block/be blocked by a and b). On 19.08.2013, at 18:35, Jared Griffith wrote: > Isn't there already a native configuration option t

Re: How to download plugins from Linux shell

2013-08-19 Thread Daniel Beck
You could create a custom jenkins.war that bundles the plugins you want in the versions you want. https://wiki.jenkins-ci.org/display/JENKINS/Bundling+plugins+with+Jenkins On 19.08.2013, at 19:31, Christopher Carlson wrote: > Is it possible to download plugins using a bash shell script? > > O

Re: How to download plugins from Linux shell

2013-08-19 Thread William Soula
You could also download the plugins and put them into the plugin folder so that when jenkins starts it will find all the jpis and unpack them. Or you could use chef. Will On 08/19/13 13:24, Daniel Beck wrote: > You could create a custom jenkins.war that bundles the plugins you want in > the v

Re: How to download plugins from Linux shell

2013-08-19 Thread Mark Waite
I don't open a browser to do any of my automated installation with Jenkins. I store a copy of jenkins-cli.jar in the source control system, then have wrapped a python script around the calls I need to make.  Periodically, I update the jenkins-cli.jar file that is checked into the source master a

1.528 Upgrade Issues

2013-08-19 Thread Jared Griffith
If you need to add or configure any jobs, I suggest you do not upgrade to the 1.528 build. There is something wrong with Jenkins when trying to add or configure jobs. I have entered a bug regarding this and just wanted to let you all know not to upgrade if you see yourself needing to configure a

RE: How to download plugins from Linux shell

2013-08-19 Thread Christopher Carlson
Will, Thanks for your suggestion. What you're describing is kind of what I want to do. I just can't figure out how to download the plugins programmatically. It seems my options are: 1. Use Jenkins CLI a. Install Jenkins b. Use Jenkins to download jenkins-cli.jar c. Run a script to use

RE: How to download plugins from Linux shell

2013-08-19 Thread William Soula
Should be able to wget off this url: http://updates.jenkins-ci.org/download/plugins/ Will From: jenkinsci-users@googlegroups.com [jenkinsci-users@googlegroups.com] on behalf of Christopher Carlson [ccarl...@imsco-us.com] Sent: Monday, August 19, 2013 1:33

RE: Failed to instantiate class org.jenkinsci.plugins.conditionalbuildstep.singlestep.SingleConditionalBuilder

2013-08-19 Thread Bob Bick
Just to follow up on this (in case other people encounter this issue)... This issue is caused because the Groovy scripting plugin does not support conditional expressions. -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Bo

RE: How to download plugins from Linux shell

2013-08-19 Thread Christopher Carlson
Will, I tried that. I get a 404 error. Chris Carlson Sr. Software Engineer Zodiac Inflight Innovations 2929 E. Imperial Hwy. Brea, CA 92821 USA P: 714.854.8478 www.imsco-us.com > -Original Message- > From: jenkinsci-users@googlegroups.com [mailto:jenkinsci- > us...@googlegroups.com]

Re: How to download plugins from Linux shell

2013-08-19 Thread Richard Bywater
I believe the site was having issues a while ago so perhaps try again as works for me. Richard. On Tuesday, August 20, 2013, Christopher Carlson wrote: > Will, > > I tried that. I get a 404 error. > > > Chris Carlson > Sr. Software Engineer > Zodiac Inflight Innovations > > 2929 E. Imperial Hwy

Re: Adding SSH Site: Cannot connect

2013-08-19 Thread Richard Bywater
Check the auth.log or similar log file to see if its giving any ideas on why the connection is failing. Richard. On Tuesday, August 20, 2013, Dolio D wrote: > I'm having this same issue, can't seem to find any solution to this > anywhere on the web or docs. > > On Tuesday, April 30, 2013 2:38:11

RE: How to download plugins from Linux shell

2013-08-19 Thread William Soula
The following command works for me: wget http://updates.jenkins-ci.org/download/plugins/AdaptivePlugin/0.1/AdaptivePlugin.hpi Will From: jenkinsci-users@googlegroups.com [jenkinsci-users@googlegroups.com] on behalf of Richard Bywater [rich...@byh2o.com] Sent: Mo

RE: How to download plugins from Linux shell

2013-08-19 Thread Christopher Carlson
Woohoo! It worked for me, too! There must have been something wrong with the site, because wget didn't work for me before. Thanks, all! I appreciate your quick response. Chris Carlson Sr. Software Engineer Zodiac Inflight Innovations 2929 E. Imperial Hwy. Brea, CA 92821 USA P: 714.854.8478

Print Global Vars in System Message ?

2013-08-19 Thread James Levinson
Anybody know if there's some way to output the values of global variables in the /configure System Message ? Perhaps groovy ? javascript ? My use case is that we store an iteration value as a global variable and change it every 3 weeks. It would be nice to display the value on every page, in the

Reg:Build happens when code change made in TFS server

2013-08-19 Thread suresh
Hi, I have setup Jenkins and configured TFS plugin I want trigger Jenkins build when code change made in TFS server Is there any alternate like scm poll for svn Regards, Suresh -- View this message in context: http://jenkins-ci.361315.n4.nabble.com/Reg-Build-happens-when-code-change-made-i

Re: http://updates.jenkins-ci.org/ DOWN

2013-08-19 Thread Dirk Volkmar
It seems that it is down again. Can anyone fix it? Am Montag, 19. August 2013 12:37:42 UTC+2 schrieb Nicolas De loof: > > and is UP now > > > 2013/8/19 nicolas de loof > > >> Who can fix this ? >> > > -- You received this message because you are subscribed to the Google Groups "Jenkins Users"