Re: Deploying versioned WAR to Tomcat 7

2014-08-05 Thread Mark Eggers
This appears to be the following issue: https://issues.jenkins-ci.org/browse/JENKINS-19564 My initial take on this is that it's a Cargo issue with parallel deployment. Mark /mde/ On Monday, August 4, 2014 6:23:40 PM UTC-7, Mark Eggers wrote: Further followup: It seems that the Deploy

Jenkins Module Build Behaviour

2014-08-05 Thread Grueneberger, Franz Josef
Hi all, I have a multi-module maven project in Jenkins and observe the following build behavior from time to time. The multi-module project has concurrent builds enabled. In most of the cases everything is fine and the output is as follows: [cid:image005.png@01CFB0A6.7F77EFA0] However, from

Reg: jenkins build Error

2014-08-05 Thread bandi pavankumar reddy
Hi friends i am doing java source files building in Jenkins...some build.xml files having huge source file's in Jenkins i am trying to build in compile target it was displaying error showing to solve that error give to me any suggestion's i am sending that error I am getting this error for

Re: Reg: jenkins build Error

2014-08-05 Thread Jason Korth
export ANT_OPTS=-Xmx256m http://epicforce.net/signatures/Jason1.PNG On Tue, Aug 5, 2014 at 7:38 AM, bandi pavankumar reddy pavanreddy...@gmail.com wrote: Hi friends i am doing java source files building in Jenkins...some build.xml files having huge source file's in Jenkins i am trying to

HowTo trigger 'needed' jobs instead of all (2 jobs instead of 100+ )

2014-08-05 Thread Johan Wranker
Some background since Autosar http://autosar.org isn't standard Jenkins environment. - The produced artifacts are called SWC (Autosar Software Components) - The interfaces between the SWCs are stored in a database and from that is the interface Contract for a specific SWC extracted. - There are

Re: Need some helps on Jenkin SCM Polling....

2014-08-05 Thread Johan Wranker
Try to add /opt/rational/clearcase/bin in the .cshrc file (depending on shell of cause) of the jenkins-user. Without the -login flag isn't shell startup file read. /Johan Den måndagen den 4:e augusti 2014 kl. 17:55:07 UTC+2 skrev lingfei ouyang: Hello All, Im currently created the jenkin

Re: Tag this Build - How to tag that build's workspace?

2014-08-05 Thread Eric
Is it safe to create a tag the following way so that I can do what I want? svn upgrade svn copy -m Creating a Tag https:/url/svn/test/HelloWorld/trunk@%PROMOTED_SVN_REVISION% https://url/svn/test/HelloWorld/tags/%Tst Tag% copy

How to use Measurements Plot Plugin?

2014-08-05 Thread Andrew Pritykin
Hi everyone, I have a JS file that looks to see how long it takes to load a webpage. Once the page loads it saves the result (time in ms) to a file. After looking at the Measurements Plugin I see its a extension to the Junit Test result post build. currently my script writes to a file

Re: Is Jenkins doing a git pull between each matrix element?

2014-08-05 Thread Brian Moffat
Hi Mark, The advantage of using my kludge as opposed to using a script to iterate through the builds is that Jenkins has all this great messaging (hipchat / email) and log capture that I would have to re-implement. And I have a monitoring/reporting infrastructure in place that is based on the

Re: Is Jenkins doing a git pull between each matrix element?

2014-08-05 Thread Les Mikesell
On Tue, Aug 5, 2014 at 1:16 PM, Brian Moffat crd...@gmail.com wrote: Hi Mark, The advantage of using my kludge as opposed to using a script to iterate through the builds is that Jenkins has all this great messaging (hipchat / email) and log capture that I would have to re-implement. And I have

Re: Best Practices to get metrics from Hudson server about jobs

2014-08-05 Thread Alexy Thomas
Hi, Is there any plugin in Jenkins that would give me data/reports based on the entire pipeline? For example: 1. Time stamp of the green build at the end of the pipeline. 2. Cycle Time that took for the particular snapshot to go through the pipeline before it became succesful green. 3. Number of

Re: Tag this Build - How to tag that build's workspace?

2014-08-05 Thread Les Mikesell
On Tue, Aug 5, 2014 at 10:22 AM, Eric ericleesand...@gmail.com wrote: Is it safe to create a tag the following way so that I can do what I want? svn upgrade svn copy -m Creating a Tag https:/url/svn/test/HelloWorld/trunk@%PROMOTED_SVN_REVISION% https://url/svn/test/HelloWorld/tags/%Tst Tag%

Email only after all retries fail

2014-08-05 Thread Harpel, Craig
I'm trying to get Jenkins to send email to recipients only after the last attempted retry of a job fails. In other words, I don't want them getting email for all the failures; just if they *all* fail. Is there a way to do that with the email-ext plugin and naginator? Thanks. Craig -- You

Re: Email only after all retries fail

2014-08-05 Thread Slide
How do you determine if the job will be the last attempt? If there is something in the environment or something like that which tells you it is the last attempt, you could use a pre-send script to cancel sending the email unless that condition was met. On Tue, Aug 5, 2014 at 1:44 PM, Harpel,

RE: Email only after all retries fail

2014-08-05 Thread Harpel, Craig
Naginator knows the last attempt, because it knows when to give up. What I’m asking is whether there is any integration between Naginator and one of the email plugins that will let me do this without writing scripts. It sounds like the answer is “no”. From: jenkinsci-users@googlegroups.com

Re: Is Jenkins doing a git pull between each matrix element?

2014-08-05 Thread Brian Moffat
Hi Les, In my case, I'm not bothered by the actual build time, which is under 1 minute per solution. The problem is that the matrix build does a full repository pull before each matrix element, when, in my case, it is completely unnecessary, and adds 30+ minutes to the build time. Using

RE: Email only after all retries fail

2014-08-05 Thread Slide
There currently is not, but email-ext had an extension point for triggers, so someone could implement a trigger for naginator that only sent on the last attempt. On Aug 5, 2014 2:41 PM, Harpel, Craig char...@mitre.org wrote: Naginator knows the last attempt, because it knows when to give up.