Re: Plugin to display results from several jobs altogether

2015-03-23 Thread Bruno
I've found Disk Usage Plugin and it fits perfectly. Le lundi 23 mars 2015 09:47:01 UTC+1, Bruno a écrit : Hi everyone, I have several jobs that have their own graph, and I'm looking for a plugin to gather all results from all jobs and to display these results in one single graph. Is

Cron Trigger issues

2015-03-23 Thread Kanstantsin Shautsou
I got weird situation when Trigger is executed for disabled project. I'm checking sources https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/hudson/triggers/Trigger.java#L256-L276 and don't see any checks for disabled project at all (1). I also had a case when .run() was

Slave communication error

2015-03-23 Thread Bruno Meneguello
Hello, Recently I'm getting this error http://pastebin.com/vbqbFE7C during my tests execution. It's intermittent (occurs at most once each hundred executions). It seems to be an error in the communication channel, but I can't figure out what could it be. Anyone can help me? Thanks -- You

PLugin for auto selecting next available parameter

2015-03-23 Thread Damien Biggs
I'm thinking of writing a plugin for doing the following. Obviously if one already exists, I'd love to know what it is. We have the following setup for our tests. For incremental tests, we have a fully built VM in Vcenter. Prior to running the testing job, we revert that VM to a state without

Re: Cron Trigger issues

2015-03-23 Thread Kanstantsin Shautsou
Moving discussion/work to PR https://github.com/jenkinsci/jenkins/pull/1617 On Monday, March 23, 2015 at 8:56:19 PM UTC+3, Kanstantsin Shautsou wrote: For SCMTrigger it more deep Mar 23, 2015 8:47:08 PM FINE hudson.triggers.Trigger cron checking

[JENKINS-27034][#1569] Request for review/assistance of core PR

2015-03-23 Thread Suckow, Thomas J
I was hoping someone could critique my pull request for core. I am perplexed by the unit test failing as it succeeds on my system. I can't figure out how my test differs from some of the other similar tests. I would also appreciate any critiques in general that would make this a better PR.

Plugin to display results from several jobs altogether

2015-03-23 Thread Bruno
Hi everyone, I have several jobs that have their own graph, and I'm looking for a plugin to gather all results from all jobs and to display these results in one single graph. Is there a plugin like that ? I just need a similar plugin to get the gist of the code behind. Thank you in

Re: Initializing causes endless loop

2015-03-23 Thread Robert Sandell
You should not store the list of users, but instead look them up when you actually need them, the list can change during runtime by signup or a new commit author in a build, depending on what plugins you have. If you do need to do something during Jenkins startup you should implement an

Re: Plugin Hosting for Stash Pull Request Builder

2015-03-23 Thread domi
Thats about the info I would expect on the plugins wiki page… Domi On 23 Mar 2015, at 01:24, Nathan McC nathan.e@gmail.com wrote: Add a blog post with some screenshots; http://blog.nemccarthy.me/?p=387 On Sunday, March 22, 2015 at 9:08:59 PM UTC+11, Nathan McC wrote: Hey guys, I've

Re: Plugin Hosting for Stash Pull Request Builder

2015-03-23 Thread Nathan McC
Thanks. Updated the wiki with how to. Would it be possible to get this into the jenkins ci on github to make this official. I'm assuming once I have a repo and permissions to do a relase the rest of the info on the wiki page will populate. On Monday, March 23, 2015 at 6:04:23 PM UTC+11,

jenkins Testlink plugin 3.10, testcases are seen as not run

2015-03-23 Thread Nilam Khule
Hello, I am facing similar issue which is logged by someone and in unresolved state.:- JENKINS-20039 https://issues.jenkins-ci.org/browse/JENKINS-20039. My build versions are:- Jenkins:- 1.599 testlink plugin:- 3.10 teslink:- 1.9.13 I see those are compatible with each other, but I am still

Re: Unable to get Remote build trigger working

2015-03-23 Thread Vinoth raj
Seems like root cause of the problem is below: - Jenkins runs in a local machine on port 8085 - Port forwarding has been setup in gateway - One can access jenkins using http://gateway:8085 from outside - Curl http api command succeeds if I use the local IP of the machine within the network If I

Re: Postbuild - Programatically filter all non-svn-triggered builds

2015-03-23 Thread Peter Rader
What you are looking for is the ‘Cause' of a build, like here: https://github.com/jenkinsci/buildtriggerbadge-plugin/blob/master/src/main/java/org/jenkinsci/plugins/buildtriggerbadge/RunListenerImpl.java#L34 The one you are looking for is most probably of type SCMTriggerCause (not sure if Svn

Initializing causes endless loop

2015-03-23 Thread Peter Rader
Hi, maybe you have a clean solution for me: 1. Jenkins starts and initializes the Plugins. 2. I have an extension-point in my Plugin and the Constructor needs a list of the users. 3. I can access the users only if Jenkins has been started. Now i have a problem. Step 2 uses the Code

Re: Initializing causes endless loop

2015-03-23 Thread Peter Rader
You should not store the list of users, but instead look them up when you actually need them, the list can change during runtime by signup or a new commit author in a build, depending on what plugins you have. We talk about the jabber-server-plugin. Users connect via a jabber-client to a

Re: Cron Trigger issues

2015-03-23 Thread Jesse Glick
On Mon, Mar 23, 2015 at 11:11 AM, Kanstantsin Shautsou kanstantsin@gmail.com wrote: I got weird situation when Trigger is executed for disabled project. Possible that each Trigger is expected to suppress itself at some point for a disabled project, or possible that this is a mistake. Does

Re: Cron Trigger issues

2015-03-23 Thread Kanstantsin Shautsou
Suppressing Triggers itself is not performance friendly. You may have hundred jobs with * * * * * but only one enabled. I see no changes in triggers package since previous year, so i mostly test on 1.565.3 Search in jira found only thousands issues for triggering jobs. Created job timerTrigger

Re: Cron Trigger issues

2015-03-23 Thread Kanstantsin Shautsou
Run suppressed in scheduleBuild2 https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/jenkins/model/ParameterizedJobMixIn.java#L108-L109 On Monday, March 23, 2015 at 8:19:14 PM UTC+3, Kanstantsin Shautsou wrote: Suppressing Triggers itself is not performance friendly. You may

Re: Cron Trigger issues

2015-03-23 Thread Kanstantsin Shautsou
For SCMTrigger it more deep Mar 23, 2015 8:47:08 PM FINE hudson.triggers.Trigger cron checking hudson.model.FreeStyleProject@39d5e0de[scmTrigger] with spec ‘* * * * *’ Mar 23, 2015 8:47:08 PM CONFIG hudson.triggers.Trigger cron triggered hudson.model.FreeStyleProject@39d5e0de[scmTrigger] Mar