Re: What is those WARNING: Failed to inspect in the Jenkins logs?

2014-03-03 Thread Michael Niestegge
I have similar problems: Every evening my jenkins server dies: It uses the whole memory allocated (2GB out of 12GB) and the garbage collector starts running. From then on, i am not able to reach the webinterface any more.

Increase jobs in build queue of a project

2014-03-03 Thread Jayaprakash D B
Hi, I have a project where we submit number of builds. As of now, I can see only two jobs in the queue:one the running one and other the queued one. I want to queue more than one job in a particular queue. Is it possible? Thanks, JP -- You received this message because you are subscribed to

Re: Increase jobs in build queue of a project

2014-03-03 Thread Benjamin Lau
I'm assuming all of these have the same parameters or are not parameterized at all. Due to this the queue will be culled by Jenkins such that only each unique job will appear in the queue. Marc MacIntyre (in the thread about for loops the other day) suggested the following to compensate for this:

RE: svn authentication failure for external link

2014-03-03 Thread David Aldrich
Hi This problem appears to have been resolved by upgrading to Jenkins 1.552 and svn plugin 2.2. Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 28 February 2014 09:10 To: jenkinsci-users@googlegroups.com

Fwd: Re: Re: Parametrized build with dynamically populating values

2014-03-03 Thread alok kumar
-- Forwarded message -- From: alok kumar alok.kuma...@gmail.com Date: Feb 27, 2014 11:27 PM Subject: Re: Re: Parametrized build with dynamically populating values To: Jayaprakash D B jayaprakash.basava...@altair.com Cc: Hi , I compiled the code as you had suggested and put the

Re: svn authentication failure for external link

2014-03-03 Thread D Vijay
Hi David, I am facing a similar kind of issue. My question is posted as: Maven Release Plugin throws Authentication Required error. Can you please help me in configuring the release plugin. On Monday, 3 March 2014 16:37:36 UTC+5:30, David Aldrich wrote: Hi This problem appears to have

priority sorter plugin

2014-03-03 Thread Jayaprakash D B
Hi All, I am using priority sorter plugin for a project. I want the priority values to be set as part of parametrized value. If I am not wrong, it's not supported directly. Under Job Priorities page, I tried setting the Use priority from Build parameter option. For Build Parameter Name I set

Re: Increase jobs in build queue of a project

2014-03-03 Thread Jayaprakash D B
Thanks. Issue resolved On Monday, 3 March 2014 15:48:40 UTC+5:30, benjamin.a.lau wrote: I'm assuming all of these have the same parameters or are not parameterized at all. Due to this the queue will be culled by Jenkins such that only each unique job will appear in the queue. Marc

Re: Increase jobs in build queue of a project

2014-03-03 Thread Benjamin Lau
Oh! I didn't know about that one. I'll have to start making use of it. Thanks for the pointer! Cheers, Ben On Mon, Mar 3, 2014 at 5:08 AM, Geoff Cummings em...@gcummings.com wrote: You can use the Random String Parameter as an easy way to have unique parameters per build

Re: Maven Release Plugin throws Authentication Required error

2014-03-03 Thread Baptiste Mathus
Hi, Imo wrong mailing list. This is a pure maven question. Better ask it on maven users. Cheers Le 3 mars 2014 12:06, D Vijay vijayd1...@gmail.com a écrit : Dear All, I need help in configuring the Maven Release plugin. I am trying to configure the plugin in Jenkins job. I am getting

Re: priority sorter plugin

2014-03-03 Thread Baptiste Mathus
This is indeed exactly how we use the priority sorter. Using a parameter. So maybe double check what you did or explain in details here how you proceed. Cheers Le 3 mars 2014 14:07, Jayaprakash D B dbjayaprak...@gmail.com a écrit : Hi All, I am using priority sorter plugin for a project. I

java options for jobs on a slave

2014-03-03 Thread Les Mikesell
We have some jobs that are running out of memory in junit tests. I think the jobs are run as ant tasks, constrained to certain nodes that have plenty of RAM. Is there a job or node specific way to set the java memory options for the jvm that will be run for the build? -- Les Mikesell

Cannot access the jenkins service running on redhat linux

2014-03-03 Thread Eric Wood
I just installed a version of jenkins on a redhat linux server.  I can see the process when I query the process table: jenkins  10935     1  1 11:32 ?        00:00:35 /usr/bin/java -Dcom.sun.akuma.Daemon=daemonized -Djava.awt.headless=true -DJENKINS_HOME=/var/lib/jenkins -jar

Suggestions for using Jenkins for environment deployment?

2014-03-03 Thread Caleb Tote
We've been using Jenkins for a year or so as our CI tool, but would like to set it up somehow to also do our environment deployments. I've been testing around with Atlassian Bamboo, which nicely integrates both CI and Deployments; however, we'd like to stay with Jenkins since it's free. Is

Re: priority sorter plugin

2014-03-03 Thread Jayaprakash D B
From the main page, I have selected priority strategy to be Use priority from Build Parameter. And I am using BuildPriority as the build parameter name. I have same parameter in the job by extended choice parameter. I submit the build with BuildPriority=4,3,1 respectively. I am expecting

Re: Cannot access the jenkins service running on redhat linux

2014-03-03 Thread Les Mikesell
On Mon, Mar 3, 2014 at 11:16 AM, Eric Wood eric.w...@rocketmail.com wrote: I just installed a version of jenkins on a redhat linux server. I can see the process when I query the process table: jenkins 10935 1 1 11:32 ?00:00:35 /usr/bin/java -Dcom.sun.akuma.Daemon=daemonized

Re: Jenkins using wrong JDK

2014-03-03 Thread Alexei Novikov
Your info is very helpful, thank you! You saved my day. -- 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

Re: Cannot access the jenkins service running on redhat linux

2014-03-03 Thread Eric Wood
Yes.  That was it.  Thank you.  Since this was a test server running in an internal network, I just shut off the firewall by running  service iptables stop On Monday, March 3, 2014 12:33 PM, Les Mikesell lesmikes...@gmail.com wrote: On Mon, Mar 3, 2014 at 11:16 AM, Eric Wood

Re: Jenkins using wrong JDK

2014-03-03 Thread Les Mikesell
On Fri, Oct 18, 2013 at 8:34 AM, Diego Ballve dobal...@gmail.com wrote: Hi Farrukh! Thanks for sharing. Kinda silly I have to install 2 JDKs to be able to use one of them, but it resolved the problem. I don't think you'd actually have to install the other JDK - just configure jenkins with

Re: Suggestions for using Jenkins for environment deployment?

2014-03-03 Thread Stephen Connolly
The promoted builds plugin is a good starting point. After that it depends where you are deploying your app to. In general, you set up your build to archive the artifacts... Then you set up promotions to move the archived artifacts to their target servers... Parameterized promotions can help if

seeking documentation pointers into Jenkins matrix/project security

2014-03-03 Thread Kevin Buchs
I've been setting up Jenkins as an enterprise service but I feel pretty weak on the security model after reading the documentation I could find and Jenkins: The Definitive Guide. I thought I could have users with no global permissions and only project permissions, but it seems I have to give a