Re: Theeeere Baaaack!!!

2012-06-05 Thread Vojtech Juranek
Can someone (with access to master and slave) take a stack trace on slave and master and post it here? It could be a bug in Jenkins so IMHO it's worth to investigate it. For sure it would be good to take also strace to exclude some issues non- related with Jenkins (e.g. on our instance some

Re: Email with pmd | checkstyle

2012-06-05 Thread Ullrich Hafner
Hope you don't mind that I'm using the dev list as recipient, so others can participate... On 06/04/2012 07:48 PM, Michael Polinovskiy wrote: Hi Ulli, looking at jelly templates you've provided, I have some novice questions you probably can answer on the fly without spending too much of your

Re: Jelly and slow method calls

2012-06-05 Thread Sascha Scholz
Does nobody have an idea what we can do here? Regards, Sascha On Mon, Jun 4, 2012 at 10:42 AM, Sascha Scholz sascha.sch...@gmail.com wrote: Hi all, we have created a custom build trigger page which displays data that's coming from remote systems. Currently, the Jelly UI is blocked by the

Re: Jelly and slow method calls

2012-06-05 Thread Stephen Connolly
You'd need to use the ajax support to load the delayed content, and switch to non-blocking calls On 5 June 2012 10:28, Sascha Scholz sascha.sch...@gmail.com wrote: Does nobody have an idea what we can do here? Regards, Sascha On Mon, Jun 4, 2012 at 10:42 AM, Sascha Scholz

Accessing plugin build data in Groovy

2012-06-05 Thread Renjith V
I am looking at a way to pull out the warnings information from jobs using groovy scripts for some centralized post processing. Specifically I am looking at getting the compiler warnings per run for a set of jobs. Any hints?

RE: java.io.NotSerializableException: hudson.model.FreeStyleBuild in jenkins 1.466

2012-06-05 Thread Mikael Petterson
Anyone who knows what the problem is? When I run the code jenkin 1.466 on a jenkins without slaves it works fine. But when I run it with slaves I get this error. I am not sure what I need to change. Really need someone with more insight in Jenkins than me :-) br, //mike

RE: Accessing plugin build data in Groovy

2012-06-05 Thread HARDION Vincent
Hi, This is what I'm doing to report all compilation error or anything else : def showLastLog(def job, def pattern){ log.debug(Analyze job $job with pattern $pattern) def build = job.lastBuild log.debug(Analyze last build $build of job $job) if(job instanceof

Re: Theeeere Baaaack!!!

2012-06-05 Thread Jesse Farinacci
Greetings, On Tue, Jun 5, 2012 at 4:43 AM, Vojtech Juranek vjura...@redhat.com wrote: Can someone (with access to master and slave) take a stack trace on slave and master and post it here? It could be a bug in Jenkins so IMHO it's worth to investigate it.

Re: Theeeere Baaaack!!!

2012-06-05 Thread Jesse Farinacci
Greetings, On Tue, Jun 5, 2012 at 9:28 AM, Jesse Farinacci jie...@gmail.com wrote: For sure it would be good to take also strace to exclude some issues non- related with Jenkins (e.g. on our instance some jobs occasionally got stuck and finally the root cause was waiting for NFS locks) Here's

Re: Theeeere Baaaack!!!

2012-06-05 Thread Jesse Farinacci
Greetings, On Tue, Jun 5, 2012 at 10:00 AM, Jesse Farinacci jie...@gmail.com wrote: Here's the jstack -f output against master: https://gist.github.com/a3602b4c0d9939fdf573 Here's the /threadDump for master: https://gist.github.com/8030a5468067eb580eda -Jesse -- There are 10 types of

RE: Email with pmd | checkstyle

2012-06-05 Thread Alex Earl
I'm almost ready to release a new version that should allow access to importing everything correctly in groovy templates. Sent from my Windows Phone From: Ullrich Hafner Sent: 6/5/2012 1:59 AM To: jenkinsci-dev@googlegroups.com Cc: Michael Polinovskiy Subject: Re: Email with pmd | checkstyle Hope

RE: java.io.NotSerializableException: hudson.model.FreeStyleBuild in jenkins 1.466

2012-06-05 Thread Mikael Petterson
I am using slave version Slave.jar version: 2.13 br, //Mike From: jenkinsci-dev@googlegroups.com [mailto:jenkinsci-dev@googlegroups.com] On Behalf Of Mikael Petterson Sent: den 5 juni 2012 14:25 To: jenkinsci-dev@googlegroups.com Subject: RE:

how to put a plugin to a different category

2012-06-05 Thread Jeff
Hi, I have two questions regarding building a plugin for Jenkins: 1. the plugin I made for using Blitz.io is under the 'Miscellaneous' category currently in the update center. How can I make it to list under the External Site/Tool Integrations section? 2. I used the artifactId as

Re: how's it go???

2012-06-05 Thread Kohsuke Kawaguchi
Hi, The dev list is probably the best place for this kind of questions. Yes, you can do it, but this is one of the most complex extension point in Jenkins. The ivy plugin and the Maven plugin would be the best example to start with, but it also depends on what you are trying to achieve.

FitNesse plugin: expose FitNesse tests results throught Jenkins API

2012-06-05 Thread Reynald Borer
Hi everyone, I made a pull request a few days ago on fitnesse plugin in order to expose the tests result trough the API (details here: https://github.com/jenkinsci/fitnesse-plugin/pull/2). Is it possible to merge this feature? Or should it be improved or done differently? I have been using

Re: how's it go???

2012-06-05 Thread Lloyd Chang
Hi Vince and Kohsuke, Are your respective intents to templatize steps comparable to http://blog.shinetech.com/2011/06/23/ci-with-jenkins-for-ios-apps-build-distribution-via-testflightapp-tutorial/ ? I sense that Vince's would be iOS specific via coding, whereas Kohsuke/CloudBee's would be

Re: how to put a plugin to a different category

2012-06-05 Thread Alan Harder
1. the plugin I made for using Blitz.io is under the 'Miscellaneous' category currently in the update center. How can I make it to list under the External Site/Tool Integrations section? Add a label on the wiki page for your plugin that specifies the category.. the labels are named plugin-*

Re: emma vs jacoco

2012-06-05 Thread Jonathan Fuerth
Hi Jesse, Short answer: no, there should not be any commits related to JaCoCo going into the emma-plugin. Back story: I was the one who originally forked the emma-plugin project to add JaCoCo support to it. About half way through, I realized it was not sensible to support both Emma and JaCoCo

What jenkins.xml is used to build a wiped-out workspace?

2012-06-05 Thread John Lindwall
We are trying to figure out an odd behavior. We have an automation git repo containing (only) a jenkins.xml that use the GitSCM plug-in to clone and build a different repo and then execute a number of automation tests on it. The idea is that we can tweak the settings in the jenkins.xml file in

Re: What jenkins.xml is used to build a wiped-out workspace?

2012-06-05 Thread Mark Waite
My jobs are configured with a file named config.xml rather than a file named jenkins.xml.  I don't have a file named jenkins.xml anywhere on the file system of my Jenkins server.  That may be part of the challenge you're facing (wrong file name?). Another challenge may be that the Jenkins