Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-06 Thread Sanjeet Malhotra
I have started working upon JUnit plugin and planning on adding new functionalities listed below. Please suggest some advice if any correction is needed or changes are needed. FYI: I am only using the information provided in junitResult.xml and is not making any xml file of my own having more in

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-02 Thread Sanjeet Malhotra
Thanks I will look into and I was thinking of a way to have more customizable charts. Thanks for suggesting this. On Tuesday, June 2, 2020 at 11:56:56 PM UTC+5:30, Ullrich Hafner wrote: > > And before writing a lot of new trends using the old PNG server side > rendering you should think about us

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-02 Thread Ullrich Hafner
And before writing a lot of new trends using the old PNG server side rendering you should think about using the new approach using ECharts. (See https://github.com/jenkinsci/echarts-api-plugin for details) > Am 02.06.2020 um 19:08 schrieb Sanje

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-02 Thread Sanjeet Malhotra
Thanks a lot. On Tuesday, June 2, 2020 at 9:46:28 PM UTC+5:30, Jesse Glick wrote: > > On Tue, Jun 2, 2020 at 11:22 AM Sanjeet Malhotra > > wrote: > > I am bit stuck at understanding jelly files. Is there any official > documentation for it? > > https://www.jenkins.io/doc/developer > > genera

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-02 Thread Jesse Glick
On Tue, Jun 2, 2020 at 11:22 AM Sanjeet Malhotra wrote: > I am bit stuck at understanding jelly files. Is there any official > documentation for it? https://www.jenkins.io/doc/developer generally. The site seems to be down at the moment (!), but I can find https://github.com/jenkins-infra/jenk

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-02 Thread Sanjeet Malhotra
I am bit stuck at understanding jelly files. Is there any official documentation for it? I looked at Apache jelly website but there also, majority of tags were not explained as how to use them. I new to jelly scripts and so having difficulty understanding them. TIA for any advice. On Tuesday, J

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-02 Thread Sanjeet Malhotra
Thanks a lot. Will keep that in mind and will avoid reloading of build records. On Tuesday, June 2, 2020 at 12:36:54 AM UTC+5:30, Sanjeet Malhotra wrote: > > Hi, > I wanted to contribute to JUnit Plugin by making more trends in addition > to one being currently displayed right now. I was planni

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-02 Thread Jesse Glick
The more important consideration by far is to avoid triggering loading of build records. Since Jenkins does not use a database, test results for a given build can only be obtained when the whole build (`Run`) is in memory. This is a large object, and to load it requires reading and parsing a `build

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-02 Thread Sanjeet Malhotra
Is there any particular scheme being followed for caching or is there any technique being used for better memory management. Like I was going through the code and saw the usage of weak references. As far as I know, they are used for better memory management by allowing garbage collector to colle

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-01 Thread Sanjeet Malhotra
Thanks a lot for guiding. I will surely discuss my ideas after looking at the resources you mentioned. On Tuesday, June 2, 2020 at 1:49:04 AM UTC+5:30, Mark Waite wrote: > > Great to have you interested in helping! > > https://plugins.jenkins.io/junit/ shows that the plugin is at > https://githu

Re: [Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-01 Thread Mark Waite
Great to have you interested in helping! https://plugins.jenkins.io/junit/ shows that the plugin is at https://github.com/jenkinsci/junit-plugin . I didn't see any specific contributing guidelines in the plugin. I assume it is similar to most plugins. Discuss your idea here, refine it, provid

[Question]: Where can I find guidelines for contributing on JUnit Plugin?

2020-06-01 Thread Sanjeet Malhotra
Hi, I wanted to contribute to JUnit Plugin by making more trends in addition to one being currently displayed right now. I was planning to make trends like one for test flappers, number of tests taking longer time based on various metrics, etc. I just wanted to know where I can find guidelines