Re: working out what fingerprints are used in a build

2013-05-15 Thread Chris Withers
I don't follow... If I have a build (ie: AbstractBuild as far as interface goes), how do I get the Fingerprint object for the fingerprints consumed by that build? build.getBuildFingerprints() appears to only returns fingerprints for artifacts created by that build, rather than those consumed

Re: Commit permission required for hosting new plugin VMware SnapShot plugin

2013-05-15 Thread adil shabbir
Hi! All, Can concern person please do the needful, and host my plugin in Jenkins repo? Regards Adil On Tuesday, 14 May 2013 02:08:16 UTC+5:30, adil shabbir wrote: I have developed the Jenkins plugin(plz find config page UI in attach image ) to Revert, Create and Delete the snapshots of

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ken Overly
Ulli, I agree it would be best if they could be merged into the same parser. I'm just not that good with regex to figure how to merge the two. The differences are the 1) the use of quotes around the filename, 2) comma between filename and line number, and 3) colon between linenumber and warning

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ken Overly
Thanks for the info Baptiste. It will come in handy when I get to the point when I need to commit my work. I still have some design issues to sort out first. On Tue, May 14, 2013 at 11:40 AM, Baptiste Mathus bmat...@gmail.com wrote: Hi, You're on the right track :). Here's the typical

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ken Overly
Slide, Thanks for the tip. I started out creating a parser this way, but I didn't like the way the warnings were reported back to the build (graphs, etc). It was likely because I didn't have the groovy script passing all the info that was needed. I like the idea of incorporating the change into

Re: Request to host plugin: Pretested integration

2013-05-15 Thread Alexander Uldall
I had been under the impression that the linkhttps://wiki.jenkins-ci.org/display/JENKINS/Designing+pre-tested+commit you provided was regarding Kohsuke Kawaguchi's plugin. I see now that it is desribing a design of pre-tested commit. So our plugin does in fact have some relation to the link

Advice for handling multiple artifacts on a single Build Action

2013-05-15 Thread Chris Price
Hello, I'm working on a plugin that archives multiple artifacts (directories of html and content) on each build. I have this part working without any big problems. However, I'm struggling a bit with the code to expose these artifacts in the Jenkins UI. What I want to do is to use

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ulli Hafner
Hi Ken, I changed the regexp to: https://github.com/jenkinsci/warnings-plugin/commit/076da03e4afbcf0ace433f6420c7f417c94049fd Now the parser handles both formats. Will be part of the next warnings releaseā€¦ Thanks, Ulli Am 15.05.2013 um 15:53 schrieb Ken Overly ken.ove...@gmail.com: Ulli,

Re: Request to host plugin: Pretested integration

2013-05-15 Thread Ulli Hafner
Alexander, that sounds very promising! This feature has a lot of votes! Here is the repository: https://github.com/jenkinsci/pretested-integration-plugin When I try to set permissions I get an error: Is 205254 your github account name? drulli 18:34jenkins-admin: Make 205254 a committer of

CPU spikes on clicking Job - Configure

2013-05-15 Thread Steven Deal
Running 1.514, our Jenkins pid spikes the cpu to over 100% when bringing up the configure screen for a job. From clicking the link, to the page being rendered is taking roughly 1 minute 40 seconds. Setting the JENKINS_DEBUG_LEVEL to 9 does not show any more activity in the logs. I reduced the

Re: CPU spikes on clicking Job - Configure

2013-05-15 Thread Jesse Glick
On 05/15/2013 01:13 PM, Steven Deal wrote: Does anyone know what might affect rendering this page? You need to take a thread dump to diagnose. $server/threadDump, jstack, kill -QUIT, etc. -- You received this message because you are subscribed to the Google Groups Jenkins Developers group.

Re: Advice for handling multiple artifacts on a single Build Action

2013-05-15 Thread Jesse Glick
On 05/15/2013 12:17 PM, Chris Price wrote: I've implemented a doArtifacts method that can successfully map these kinds of request to the appropriate paths for the artifacts on disk, but when I try to use DirectoryBrowserSupport in this context, it breaks because the extra token ARTIFACT_ID is

Re: Efficient class/jar prefetching in remoting

2013-05-15 Thread Jesse Glick
On 05/15/2013 01:53 AM, Kohsuke Kawaguchi wrote: when JVM loads Foo, it immediately resolves all the interfaces and super classes that Foo extends/implements. This makes sense, but our prefetching logic doesn't take this into account. No? File at

Re: Warnings parser - writing a new error parser

2013-05-15 Thread Ken Overly
Hi Ulli, Wow! Thanks for doing that. I anticipated doing it myself and forcing me to learn something in the process. Thanks again. -Ken On Wed, May 15, 2013 at 12:28 PM, Ulli Hafner ullrich.haf...@gmail.comwrote: Hi Ken, I changed the regexp to:

Re: Advice for handling multiple artifacts on a single Build Action

2013-05-15 Thread Chris Price
Oh, interesting, so if I use getBlah instead of doBlah then it will call methods on the inner object? Didn't know that. Thanks! On Wed, May 15, 2013 at 10:50 AM, Jesse Glick jgl...@cloudbees.com wrote: On 05/15/2013 12:17 PM, Chris Price wrote: I've implemented a doArtifacts method that

Re: Move Matrix Tie Parent Plugin on Github

2013-05-15 Thread ogondza
There seems to be https://github.com/jenkinsci/matrixtieparent-plugin repository. However, I do not know what is the relation between the two. -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop

Great Developer Permanent Position! Using jenkins, git, in a Unix environment. Click to find out more!

2013-05-15 Thread Reema Hibrawi
Hello Developers! Great to see such an active group. We have a full time position available in San Diego for a developer working a linux, agile environment with a focus on jenkins, git, and java. This position will be heavy on the development side, but also will be leading the team, and

Re: Advice for handling multiple artifacts on a single Build Action

2013-05-15 Thread Jesse Glick
http://stapler.kohsuke.org/reference.html -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-dev+unsubscr...@googlegroups.com. For more options,

Re: Advice for handling multiple artifacts on a single Build Action

2013-05-15 Thread Chris Price
Thanks, Jesse. I was looking all over for something that documented that stuff and just didn't have any luck finding it... this is immensely helpful! On Wed, May 15, 2013 at 11:55 AM, Jesse Glick jgl...@cloudbees.com wrote:

Re: working out what fingerprints are used in a build

2013-05-15 Thread Dean Yu
Ah. Sounds like you're working with freestyle or matrix jobs. Those need to have the Record fingerprints to track usage option configured explicitly in the projects. It doesn't happen automatically like it does for Maven projects. -- Dean On 5/14/13 8:18 AM, Chris Withers