Reviewing adoption rate of a jenkins plugin version?

2015-07-27 Thread Mark Waite
Does the existing data that the project already gathers provide enough information that I could use it to assess the rate at which a specific new version of a plugin is being adopted by users? For example, I'd like to know if the git plugin 2.4.0 release that happened a week ago is being

Re: Reviewing adoption rate of a jenkins plugin version?

2015-07-27 Thread Christopher Orr
On 27/07/15 13:53, Mark Waite wrote: Does the existing data that the project already gathers provide enough information that I could use it to assess the rate at which a specific new version of a plugin is being adopted by users? For example, I'd like to know if the git plugin 2.4.0 release

Re: compiling jenkins in eclise

2015-07-27 Thread James Nord
You can't import the maven project into eclipse if you use mvn eclipse:eclipse. If you are importing the maven project use only m2eclipse, if using mvn eclipse:eclipse import it using the existing project. You probably also need to make sure you have configured your maven settings correctly

post build LabelAxis value in MatrixRun

2015-07-27 Thread Adi
Hi, I've a question. I'm working on plugin which will match different multi configuration builds, using different git branches and push artifacts to remote repo. So I've multiple label/slaves to run on different platforms, like axis=PLATFORM, node-4 with label RHEL5_64 and RHEL5_64_DEC. In

Re: revisit ToolInstallation (Default)

2015-07-27 Thread Jesse Glick
+1 on your proposal except On Wed, Jul 1, 2015 at 4:41 PM, nicolas de loof nicolas.del...@gmail.com wrote: ToolInstallation selector only get displayed on UI when there's more than just on[e] installation I would recommend the selector be displayed unconditionally. Principle of least

UI changes branch progress report Day 2+3

2015-07-27 Thread Kohsuke Kawaguchi
I should have sent this out Friday, but here it goes. At the end of day 1, I saw that mvn test in the test module was having a lot of failures left right --- JavaScript inside HtmlUnit is reporting errors that we don't see in the actual browsers. I talked to Tom about this, and my understanding

Re: @reviewbybees pull requests

2015-07-27 Thread Jesse Glick
On Fri, Jul 3, 2015 at 10:48 AM, Ullrich Hafner ullrich.haf...@gmail.com wrote: I don’t see why it is helpful to make intermediate work visible to plug-in authors, it creates a lot of unwanted noise. I think it would be sufficient that you make code reviews within your forked repository. When

Re: Workflow Plugin and Snippet Generator

2015-07-27 Thread Jesse Glick
On Thu, Jul 2, 2015 at 11:40 AM, Gregory Symons gsym...@gsconsulting.biz wrote: I'm currently working on updating the analysis suite plugins to work with the workflow plugin I hope you are coördinating with @amuniz who is also working on this?

Re: revisit ToolInstallation (Default)

2015-07-27 Thread Jesse Glick
On Thu, Jul 2, 2015 at 6:09 PM, Martin Weber fifteenknots...@gmail.com wrote: BuildSteps inside jobs in turn just reference the selected tool installation by its never changing PID (instead of its name as currently, which causes the annoying behavior). I think I would be -1 on this. Like

Re: [workflow] can a Step create child Steps?

2015-07-27 Thread Jesse Glick
On Fri, Jul 24, 2015 at 12:00 PM, James Strachan james.strac...@gmail.com wrote: I wonder has anyone ever tried such a thing; written a Step which creates one or more child steps itself? There is no API which would permit a `StepExecution` to create and run another one. What you *can* do is to

Hosting for new plugin: mktmpio

2015-07-27 Thread Ryan Graham
Hi all, I've created a plugin that I'd like to share with the Jenkins community and it seems getting it hosted with jenkins-ci.org is the way to do it. Repo: https://github.com/mktmpio/mktmpio-jenkins-plugin Plugin name: mktmpio GitHub username: rmg Jenkins username: rmgraham Wiki:

Re: New Jenkins UI for DotCi

2015-07-27 Thread Tom Fennelly
Hi Surya. Sorry for the very late reply on this. It appears as though your server has been taken down, right? I wonder could you show it to us again. Regards, Tom. On Tuesday, July 7, 2015 at 12:04:48 AM UTC+1, Surya Gaddipati wrote: Hi, I've been working on new UI for DotCi over past

Re: How to force the installation of a plugin using the JenkinsRule?

2015-07-27 Thread Jesse Glick
On Mon, Jul 27, 2015 at 3:30 PM, Victor Martinez victormartinezru...@gmail.com wrote: For some reason the gradle plugin is not installed when I run mvn test Not sure, it works for me. -- You received this message because you are subscribed to the Google Groups Jenkins Developers group. To

Re: Trigger a build via API and know for sure, the resulting build number

2015-07-27 Thread Jesse Glick
On Mon, Jul 20, 2015 at 1:14 PM, andrew.p.s...@gmail.com wrote: The best solution I can think of right now is to generate a random string to be used as an ID. Post that ID as a parameter than use the API to find which build has that matching ID. Thoughts? Run.queueId (in newer Jenkins

Need to run post build task step on the slave server for Continuous Deployment.

2015-07-27 Thread Pavan Teja
Hi, I am using Jenkins for Continuous Integration and Continuous Deployment. I have written script for deployment process, but i don't want to run that script from jenkins master server, due to some security reasons. So i launched a slave server using Headless mode in Ubuntu server,

Re: Workflow Plugin and Snippet Generator

2015-07-27 Thread Manuel Jesús Recena Soto
And I'm working on making CheckStyle Plugin compatible with Workflow: https://issues.jenkins-ci.org/browse/JENKINS-29648 Regards, 2015-07-27 20:19 GMT+02:00 Jesse Glick jgl...@cloudbees.com: On Thu, Jul 2, 2015 at 11:40 AM, Gregory Symons gsym...@gsconsulting.biz wrote: I'm currently working

Re: Improvements to the developer docs

2015-07-27 Thread Jesse Glick
On Thu, Jul 16, 2015 at 8:31 AM, Daniel Beck m...@beckweb.net wrote: What parts do you think are documented insufficiently? The relationship between `Describable` and `Descriptor`, and how you are *supposed* to do form binding (recommended idioms as in `ui-samples-plugin`). -- You received

Re: Improvements to the developer docs

2015-07-27 Thread oliver gondža
That reminds me, quite some time ago I started a repo[1] with example extension point implementations for the purposes of a workshop. Not sure it is of any use for this purpose ... [1] https://github.com/jenkinsci/sample-extensions -- oliver -- You received this message because you are

Re: UI changes branch progress report Day 2+3

2015-07-27 Thread Tom Fennelly
I think the test failures are now down to the config-ui changes (i.e. not relating to the JS modularization). -- 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

How to force the installation of a plugin using the JenkinsRule?

2015-07-27 Thread Victor Martinez
Hi there, I'm using the JenkinsRule in the test phase of a particular plugin development and I would like to know how I can install a particular plugin in the UT phase. For instance: pom.xml ... dependencies dependency groupIdorg.jenkins-ci.plugins/groupId

Re: rfc: Solution for Sonar and Xvnc

2015-07-27 Thread Jesse Glick
On Wed, Jul 8, 2015 at 10:51 AM, croesch christian.roe...@icongmbh.de wrote: Are you suggesting, that actually the way the sonar plugin works should be changed? From what little I know of that plugin, yes. -- You received this message because you are subscribed to the Google Groups Jenkins

Re: Jelly Repeatable Items default values

2015-07-27 Thread Jesse Glick
On Thu, Jul 23, 2015 at 8:39 PM, Christopher Orr ch...@orr.me.uk wrote: repeatableProperty has a default field, which specifies the initial list of values for the repeatable collection, if there isn't yet an instance. Unfortunately `repeatableHeteroProperty` does not. Would be a good PR. --

Re: @reviewbybees pull requests

2015-07-27 Thread Manuel Jesús Recena Soto
I agree with Jesse. For me, WiP means hey, I'm working on it, I've split the task in small task and I want to share the process. Regards, 2015-07-27 20:15 GMT+02:00 Jesse Glick jgl...@cloudbees.com: On Fri, Jul 3, 2015 at 10:48 AM, Ullrich Hafner ullrich.haf...@gmail.com wrote: I don’t see

How to force the installation of a plugin using the JenkinsRule?

2015-07-27 Thread Victor Martinez
Hi there, I'm using the JenkinsRule in the test phase of a particular plugin development and I would like to know how I can install a particular plugin in the UT phase. For instance: pom.xml ... dependencies dependency groupIdorg.jenkins-ci.plugins/groupId

Hosting for New Plugin: jboss-deploy

2015-07-27 Thread Daniel Bustamante Ospina
Hi everyone, I've created a plugin for jboss deployment that I'd like to share with the Jenkins community. Repo: https://github.com/Daniel69/deploy-jboss-plugin Plugin name: deploy-jboss GitHub username: Daniel69 Jenkins username: dbustamante69 There are a couple of plugins that one could

Request hosting new plugin : metadataJobProperty

2015-07-27 Thread Cédric Levasseur
Hello, This is a request for hosting a new plugin, my first one, named metadataJobProperty url : https://github.com/CedricLevasseur/MetaDataJobProperty.git My account github is CedricLevasseur My jenkinsci account is CedricLevasseur With MetaDataJobProperty plugin, you can insert some

Request hosting of new plugin - Runscope

2015-07-27 Thread Neil Mansilla
Hi there, I'd like to request hosting of a new plugin. GitHub URL: https://github.com/Runscope/runscope-jenkins-plugin Plugin-name: runscope Personal GitHub username: mansilladev Jenkins username: mansilladev Description: Integrate Runscope API tests as build steps in your Jenkins

Re: Plugin jobs configured to pick up findbugs and checkstyle reports

2015-07-27 Thread Oleg Nenashev
I've published the POM file template, which I've used in my patches: https://gist.github.com/oleg-nenashev/9be4c1d7a9652513808d. Kostya does not agree with several configs, but we can discuss them now. Does anyone compared Efforts FB value? Default vs Max? This is a subject for the global

Re: Why is Jenkins using a HtmlUnit fork?

2015-07-27 Thread nicolas de loof
I fully agree on the initial intent and benefit for project dynamic to fork and release custom binaries, the issue is those changes were not proposed upstream and in some cases (winstone for sample) the fork quickly diverged. As a result we hardly can get upstream improvements, I remember doing

Re: Why is Jenkins using a HtmlUnit fork?

2015-07-27 Thread Tom Fennelly
We are where we are guys, so there's no point in us getting worked up about it. Imo, the question now is can we fix it and get back with the HtmlUnit herd? The only things I've seen that could be considered to be added value are a few helper methods on the HtmlForm and DomNode classes (utilities

Re: Why is Jenkins using a HtmlUnit fork?

2015-07-27 Thread 'Bruno P. Kinoshita' via Jenkins Developers
Just in case someone would like to check if we can get a new release of Apache Commons Jelly to replace our forked Jelly too; I'd started a discussion a couple of months ago in the apache dev-list and am (very) slowly working on it. http://markmail.org/thread/r2vdpgtlbka62iki Right now in my

Request to include pre-scm as part of SCM

2015-07-27 Thread Vinodhini Vijay
Hello All, This is with respect to BuildWrapper java class and SCM class. pres-scm build step Jenkins plugin uses this class: https://github.com/jenkinsci/pre-scm-buildstep-plugin/blob/master/src/main/java/org/jenkinsci/plugins/preSCMbuildstep/PreSCMBuildStepsWrapper.java Only if I