Re: email-ext

2016-05-31 Thread David van Laatum
https://issues.jenkins-ci.org/secure/ViewProfile.jspa?name=davidvanlaatum confirms it is davidvanlaatum On Wednesday, June 1, 2016 at 12:42:01 AM UTC+9:30, slide wrote: > > Do you have a Jenkins account (for JIRA, etc)? I went to set you as the > default assignee and it failed. > > On Mon, May

Re: [Blue Ocean] Test reporting UI

2016-05-31 Thread Robert Collins
On 1 June 2016 at 13:32, James Dumay wrote: > Gotcha. You're not the first to mention a Gerrit centric workflow. Are you > using any Gerrit plugins for Jenkins? I believe the handoff to Gerrit is done entirely via Zuul events. -Rob -- You received this message because

Re: [Blue Ocean] Test reporting UI

2016-05-31 Thread James Dumay
Gotcha. You're not the first to mention a Gerrit centric workflow. Are you using any Gerrit plugins for Jenkins? On Wednesday, June 1, 2016 at 11:30:35 AM UTC+10, Robert Collins wrote: > > On 1 June 2016 at 13:23, James Dumay > wrote: > > Individual freestyle jobs will

Re: [Blue Ocean] Test reporting UI

2016-05-31 Thread Robert Collins
On 1 June 2016 at 13:23, James Dumay wrote: > Individual freestyle jobs will show up as different jobs in Blue Ocean with > their own test tab on the result and there are no plans to aggregate > multiple freestyle jobs as Pipelines. > > Have you investigated using Pipeline?

Re: [Blue Ocean] Test reporting UI

2016-05-31 Thread James Dumay
Individual freestyle jobs will show up as different jobs in Blue Ocean with their own test tab on the result and there are no plans to aggregate multiple freestyle jobs as Pipelines. Have you investigated using Pipeline? On Tuesday, May 31, 2016 at 11:13:29 AM UTC+10, Robert Collins wrote: > >

Re: Pipeline calling Build Step Plugin that Writes ENV Vars - Scoping Issue?

2016-05-31 Thread Jesse Glick
On Tue, May 31, 2016 at 4:49 PM, Jimmy Ray wrote: > Would the > SimpleBuildWrapper allow me to add multiple wrapper definitions (calls to > Consul) per project? Well, you could either have the `SimpleBuildWrapper` take a `List`- or `Object[]`-valued parameter of some nested

Re: Pass a query parameter to the repeatable element's doFillXYZItems method.

2016-05-31 Thread Jesse Glick
On Mon, May 30, 2016 at 4:39 AM, mnpoonia wrote: > the parameter is not part > of Repeatable property class but other class. ANy idea how to pass the > parameter from a form to the doFill of repeatable element. Did you try `@RelativePath`? -- You received this message

[GSoC2016] Optional hangout at 8AM UTC every wednesday

2016-05-31 Thread Michael Neale
Every Wednesday, at 8AM UTC, I will be on https://jenkins-ci.org/hangout if anyone working on Google Summer Of Code is interested. (unless I am travelling). This is just an alternate time to talk about GSoC project stuff if anyone is interested, I will be lurking. -- You received this

Re: [Blue Ocean] Build failure when compiling BlueOcean : Dashboard in a Windows 7 PC

2016-05-31 Thread Michael Neale
*shakes fist at bill gates*. I think "\" was picked as a path separator deliberately to be different in the 70s when DOS was invented. This really shoudl build on windows, but may take some time. Some of the tests are also creating and executing pipelines that involve "sh" steps which may be

Re: [Blue Ocean] Build failure when compiling BlueOcean : Dashboard in a Windows 7 PC

2016-05-31 Thread Thorsten Scherler
Yeah I am with Tom, one / is getting "eaten" .srcmainjs/AdminNavLink.jsx' from 'C:\Users\Admin\Downloads\blueocean\blueocean-dashboard\target' the whole path until the last is missing it. That is coming from bo-web assembling the extensions points. BTW that file should be called

Re: Wizard should reload jenkins at the end was Re: [workflow-plugin] Java.lang.NoSuchMethodError: No such DSL method

2016-05-31 Thread Arnaud Héritier
If you succeed to do JENKINS-35247 it should be more efficient/robust for pipeline usecase. But I'm afraid (maybe I'm wrong) that we could have such dependency issue across various others plugins ... thus my brutal/heavy solution, let's restart all :-) For JENKINS-19508 yes it is sure On Tue,

Re: Wizard should reload jenkins at the end was Re: [workflow-plugin] Java.lang.NoSuchMethodError: No such DSL method

2016-05-31 Thread Jesse Glick
On Mon, May 30, 2016 at 4:07 AM, Arnaud Héritier wrote: > Maybe after the installation wizard we should automatically trigger a > restart to avoid this problem > WDYT ? No, the proper fix is to stop using optional extensions (JENKINS-19508). I think this would best be done

Re: [GSoC2016] Jenkins WebUI

2016-05-31 Thread Kirill Merkushev
Samat, maybe you'll start a PR with [WIP] in title and continue work in that PR? So we could simply subscribe to new changes and see easily what happens. 2016-05-31 0:58 GMT+03:00 James Dumay : > That's some awesome work!  > > -- > You received this message because you are

Re: Pipeline calling Build Step Plugin that Writes ENV Vars - Scoping Issue?

2016-05-31 Thread Jimmy Ray
I am not sure the SimpleBuildWrapper will work for me. The plugin is written as a build step, to allow for multiple additions to the same project, such as that multiple Consul Key/Value data could be Read/Written/Deleted as part of a single project. Would the SimpleBuildWrapper allow me to

Re: [Blue Ocean] Build failure when compiling BlueOcean : Dashboard in a Windows 7 PC

2016-05-31 Thread Tom Fennelly
On Tuesday, 31 May 2016 06:04:44 UTC+1, Richard Bywater wrote: > > I assume the cause of the issue is: > "Cannot find module '..srcmainjs/AdminNavLink.jsx" > > It looks like something is trying to write a string probably started as > "..\src\main\js/AdminNavLink.jsx" and its entered something

Re: [Blue Ocean] Build failure when compiling BlueOcean : Dashboard in a Windows 7 PC

2016-05-31 Thread Tom Fennelly
On Tuesday, 31 May 2016 05:22:13 UTC+1, Michael Neale wrote: > > > As far as I know the platform version of npm/node should not be needed, > and thus the version not matter - right Tom? > Right, the build gets a fixed local version of node and npm and uses that. The version installed on the

Re: Pipeline calling Build Step Plugin that Writes ENV Vars - Scoping Issue?

2016-05-31 Thread Jimmy Ray
So, it looks like it cannot be done. That's really disappointing as the main purpose of the Consul KV Builder plugin was to read data from Hashicorp Consul servers and add it to Jenkins jobs to be used as ENV vars. Wow. -Jimmy On Tuesday, 31 May 2016 16:12:20 UTC-4, Martin Weber wrote: > >

Re: Pipeline calling Build Step Plugin that Writes ENV Vars - Scoping Issue?

2016-05-31 Thread Martin Weber
Am Dienstag, 31. Mai 2016, 13:03:54 schrieb Jimmy Ray: > So, I am re-writing the Consul-KV-Builder Plugin > (https://wiki.jenkins-ci.org/display/JENKINS/Consul-KV-Builder+Plugin) to > work with Jenkins pipeline. I have it working fine, except for writing ENV > variables that can written and read

Pipeline calling Build Step Plugin that Writes ENV Vars - Scoping Issue?

2016-05-31 Thread Jimmy Ray
So, I am re-writing the Consul-KV-Builder Plugin (https://wiki.jenkins-ci.org/display/JENKINS/Consul-KV-Builder+Plugin) to work with Jenkins pipeline. I have it working fine, except for writing ENV variables that can written and read when pipeline calls the build step. Here is my step call:

Re: Problem releasing new plugin version

2016-05-31 Thread suresh kumar
I ran into a similar problem. If you look at: https://github.com/jenkinsci/multiple-scms-plugin/commits/master take a look at commits 5c1e918 e87071f On Tuesday, May 31, 2016 at 9:36:14 PM UTC+5:30, antonio@flagbit.de wrote: > > Hi Guys, > > I hope someone is be able to help me or at least

Problem releasing new plugin version

2016-05-31 Thread antonio . mansilla
Hi Guys, I hope someone is be able to help me or at least guide me to find the problem. I'm maintainer of the following jenkins plugin and actually trying to release a new plugin version (1.2.1). The problem

Re: Automatic Plugin Documentation [GSOC 2016]

2016-05-31 Thread Baptiste Mathus
Hi, Sorry should already have reviewed the gdoc. Will do this evening. In general, please don't hesitate to ping me e.g. on irc as a reminder to some thread or things you're expecting an answer from Tyler or me. See below for the current email. Le 31 mai 2016 12:30 PM, "Cynthia Anyango"

Re: email-ext

2016-05-31 Thread Slide
Do you have a Jenkins account (for JIRA, etc)? I went to set you as the default assignee and it failed. On Mon, May 30, 2016 at 4:06 AM David van Laatum wrote: > I will take over unless anyone else really wants to. davidvanlaatum is my > userid > > On Monday, May 30, 2016

Re: [Blue Ocean] Build failure when compiling BlueOcean : Dashboard in a Windows 7 PC

2016-05-31 Thread James Dumay
I think Tom is going to remove the symlink Magic soon. -- 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. To view

Re: Adopt a plugin: PerfPublisher

2016-05-31 Thread Baptiste Mathus
Hi, See https://wiki.jenkins-ci.org/display/JENKINS/Hosting+Plugins#HostingPlugins-Releasingtojenkinsci.org 2016-05-31 8:14 GMT+00:00 Eugene Schava : > Thanks! > > I've fixed several important fixes and want to prepare new release > Could you please help me with this? > > >

Re: Automatic Plugin Documentation [GSOC 2016]

2016-05-31 Thread Cynthia Anyango
@Oleg , - How would you suggest I handle the exploit injection issues plus what is RAM HTML ? :) I feel i would need some help with that @Tyler and @Baptise - How to write multi-page documents I have found pandoc.org which renders multiple files into a single file . for example

Re: Provide committer access to all-changes-plugin

2016-05-31 Thread suresh kumar
Hi Baptiste Mathus, Provide me the committer access to all-changes-plugin my github and jenkins-ci id "pskumar448" Thanks, -Suresh On Monday, May 30, 2016 at 12:47:39 AM UTC+5:30, suresh kumar wrote: > > Hi Baptiste Mathus, > My github id and jenkins-ci id both are same "pskumar448" > > Thanks,

Re: [Blue Ocean] Test reporting UI

2016-05-31 Thread Tom Fennelly
On Tuesday, May 31, 2016 at 2:13:29 AM UTC+1, Robert Collins wrote: > > Its a fairly massive Jenkins Job Builder setup. > > http://git.openstack.org/cgit/openstack-infra/project-config/tree/jenkins/jobs > > Hey Rob. And how does the test reporting appear for this? -- You received this