Re: Can anoyone help determine the cause of a Jenkins crash.

2012-11-12 Thread Harpreet singh Wadhwa
Looks like Memory issue "*OutOfMemoryError: Java heap space*" Try increasing in JAVA_OPTS Thanks On Mon, Nov 12, 2012 at 9:06 PM, MDKF wrote: > Hi All, > My Jenkins server died last night. I found the following text in the > error log. Can anyone help me decipher what happened? Ive had these o

Re: How to keep slaves updated

2012-11-14 Thread Harpreet singh Wadhwa
Don't know how it happens with JNLP, but for Linux machines (over SSH). It will update it automatically, when ever slave.jar is updated on master and connection (ssh) is restarted. PS: If you see connection logs (on the Jenkins UI), you will see it updating the slave.jar file. Thanks On Wed, Nov

Re: hg pull has no effect

2012-11-23 Thread Harpreet singh Wadhwa
I suspect this is time difference issue. Check the time of your Mercurial system and Jenkins system, if I am right then your Jenkins system would have some old date :-) If that turns out to be true then you have two solutions: * Either sync the time of both the machines. * Or add @HEAD (at the end

Re: Pass env variables to junit test from jenkins

2012-11-23 Thread Harpreet singh Wadhwa
Are you not using Maven Plugin (Maven type Job)? As that has a textbox for arguments. If you are using the maven job and still getting issue, then would need more info on how are you trying to pass these argument, as it should be simple enough, even if you run it from Bash shell / as Bach command

Re: Builds of new configuration in a matrix build are lost after some time.

2012-11-23 Thread Harpreet singh Wadhwa
Are you using labels to run these jobs on, or dynamic slaves. As I have seen similar issue with pool of slaves on which my job runs, next time when the job runs on different slave it looses the part that is slave specific. If not then can you please be more specific about your job configuration. I

Re: hg pull has no effect

2012-11-26 Thread Harpreet singh Wadhwa
@HEAD should not force the plugin to crash. Can you please ensure that there was no space in between the URL and @HEAD. Syntax: @HEAD If the error still exists then can you please paste the error logs here. Thanks On Mon, Nov 26, 2012 at 8:25 AM, Felipe Coelho wrote: > Hi > > I suspect this i

Re: how to configure paths for "Publish JUnit test result report" plugin

2012-12-26 Thread Harpreet singh Wadhwa
Regular expression is the key :-) example: "**/Test-*.xml" This will get all the files starting with Test and ending with xml (from any directory inside workspace). Thanks On Tue, Dec 25, 2012 at 12:47 PM, Z W wrote: > Hi All > > We have different projects in a a build job producing different

Re: how to configure paths for "Publish JUnit test result report" plugin

2012-12-26 Thread Harpreet singh Wadhwa
@Kevin Thanks for correcting me (on not a regex) @zw For you this will work. as it searches in all directories under Workspace (in this case) Thanks On Wed, Dec 26, 2012 at 8:50 AM, zw wrote: > Hi Kevin > > Thanks for responding. > > My question isnt tied to one directory; > eg **/Test-*.xml

Re: Possible to start/stop an existing EC2 instance

2012-12-31 Thread Harpreet singh Wadhwa
Not sure if the plugin can do it. But I did the same by calling EC2 api's from batch/bash script section of the job. Thanks On Sun, Dec 30, 2012 at 6:00 PM, james mintram wrote: > Hi All, > > I wondered if it were possible, or not then a trivial update to the EC2 > plugin to allow it to start/st

Re: SVN tagging issue - quick question

2012-12-31 Thread Harpreet singh Wadhwa
Don't know about any way through plugins, but still have couple of workarounds. * You can use the revision numbers, rather than head/tip. So from the bash/batch section do svn update to keep it on the revision before running the process. * Mercurial (or any decentralized system) proves to be better

Deploy Plugin Issue

2013-04-23 Thread Harpreet singh Wadhwa
Hi, I tried this plugin (deploy plugin), worked fine for tomcat (war file), but when I tried using it for JBoss (ear file), the context got deployed, but in tmp rather than default. So on JBoss restart my app is gone. Anyway to deploy it to default, or am I doing something wrong. Thanks -- htt