Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Michael Neale
Trying this out, looks like I am hitting JEP-200: https://jenkins.io/redirect/class-filter/ Need to dig in further (I thought I tried the same version of Jenkins as you). Anyone else seen this? java.lang.UnsupportedOperationException: Refusing to marshal io.jenkins.jenkinsfile.runner.SetJe

Re: hello & improving Jenkins & Kubernetes CI / CD

2018-03-06 Thread Nigel Magnay
I'd be interested - we rolled our own twine after briefly experimenting with terraform, so I build a groovy/DSL based equivalent that's work-in-progress but more programmable.. On Thu, Mar 1, 2018 at 1:50 PM, James Strachan wrote: > Hello folks! > > I’m James Strachan. I’m a long time Jenkins

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Bill Dennis
Thanks Kohsuke, I tried to give some answers to your questions inline below, if I didn't mess up the reply.. Bill On Friday, 2 March 2018 17:57:24 UTC, Kohsuke Kawaguchi wrote: > > > > On Fri, Mar 2, 2018 at 9:26 AM Bill Dennis > wrote: > >> Hello Kohsuke - >> >> I am a developer using Jenkins

Re: GSoC: Code Coverage API Plugin

2018-03-06 Thread Jeff Knurek
Hi Sugirjan, I would recommend taking a look at some of the current existing bugs for the Cobertura plugin: https://issues.jenkins-ci.org/browse/JENKINS-31353?jql=component%20%3D%20%27cobertura-plugin%27%20and%20status%20%3D%20Open%20 and see which ones look easy to fix. From there we can work

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Jesse Glick
On Tue, Mar 6, 2018 at 4:22 AM, Michael Neale wrote: > java.lang.UnsupportedOperationException: Refusing to marshal > io.jenkins.jenkinsfile.runner.SetJenkinsfileLocation for security reasons; > see https://jenkins.io/redirect/class-filter/ As suggested in that link, the JAR probably just needs

Update Fitnesse plugin to be compatible with Pipeline

2018-03-06 Thread Jeff Wilson
Is anyone working on updating the Fitnesse plugin to be pipeline compatible? If not, is there a guide for doing such a refactor? -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscrib

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Bill Dennis
I too am seeing the JEP-200 issue with these exceptions packaging to a Docker image and running with that using Docker for Windows: java.lang.UnsupportedOperationException: Refusing to marshal io.jenkins. jenkinsfile.runner.FileSystemSCM for security reasons; see https: //jenkins.io/redirect/clas

Re: Update Fitnesse plugin to be compatible with Pipeline

2018-03-06 Thread Daniel Beck
> On 6. Mar 2018, at 16:37, Jeff Wilson wrote: > > If not, is there a guide for doing such a refactor? See https://jenkins.io/doc/developer/plugin-development/pipeline-integration/ -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To uns

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Oleg Nenashev
Yeah, the entire library needs to me whitelisted (or packaged as Jenkins module). It's actually a quick-win to get it fixed as long as it is a development tool. BR, Oleg On Tue, Mar 6, 2018 at 5:00 PM, Bill Dennis wrote: > I too am seeing the JEP-200 issue with these exceptions packaging to a

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread johannes
Same exception here: java.lang.UnsupportedOperationException: Refusing to marshal io.jenkins.jenkinsfile.runner.SetJenkinsfileLocation for security reasons; I created an issue with full stacktrace . Jesse or Oleg, maybe you could elaborat

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Oleg Nenashev
I will create a pull request, stay tuned On Tuesday, March 6, 2018 at 7:32:21 PM UTC+1, joha...@schnatterer.info wrote: > > Same exception here: java.lang.UnsupportedOperationException: Refusing to > marshal io.jenkins.jenkinsfile.runner.SetJenkinsfileLocation for security > reasons; > > I cre

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Oleg Nenashev
https://github.com/kohsuke/jenkinsfile-runner/pull/8 On Tue, Mar 6, 2018 at 8:13 PM, Oleg Nenashev wrote: > I will create a pull request, stay tuned > > On Tuesday, March 6, 2018 at 7:32:21 PM UTC+1, joha...@schnatterer.info > wrote: >> >> Same exception here: java.lang.UnsupportedOperationExcep

Re: Valgrind plugin maintainer out of action

2018-03-06 Thread Oleg Nenashev
Hi Nils, We do not appoint maintainers, all maintainers are contributors. If somebody is interested to take ownership, he just needs to ping the original maintainer in public channel and wait for an approval from the current maintainer or for a 2-week timeout. OTOH I see the ongoing activities

Re: [EVENT]: Jenkins World 2018 CFP is Open

2018-03-06 Thread Alyssa Tong
Hi Joseph, At this moment only the CFP is available for JW EU. The Jenkins World website will be updated later this wk to include JW EU (registration, location). The home page for JW EU is currently under development, it's slated to be available end o

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Kohsuke Kawaguchi
Yeah, there are many possible ways to go about something like this, including what you described. That's why I'm trying to hear from Bill what his world looks like. I can use some concrete data points like that. On Fri, Mar 2, 2018 at 11:08 AM Jesse Glick wrote: > On Fri, Mar 2, 2018 at 12:56 PM

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Kohsuke Kawaguchi
On Sun, Mar 4, 2018 at 8:13 AM wrote: > I think Jenkinsfile Runner brings a lot of opportunities for pipeline > developers. The most obvious ones to me are > >1. Pipeline development (Jenkinsfile) >2. Shared library development > > *Pipeline development* > > Right now (as described by oth

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Kohsuke Kawaguchi
Oleg gave us the fix, which I merged to the master just now. I think that'll fix the problem. On Tue, Mar 6, 2018 at 1:22 AM Michael Neale wrote: > Trying this out, looks like I am hitting JEP-200: > > https://jenkins.io/redirect/class-filter/ > > Need to dig in further (I thought I tried the sa

Re: POTD: Jenkinsfile Runner

2018-03-06 Thread Kohsuke Kawaguchi
On Tue, Mar 6, 2018 at 2:57 AM Bill Dennis wrote: > Thanks Kohsuke, I tried to give some answers to your questions inline > below, if I didn't mess up the reply.. > > Bill > > On Friday, 2 March 2018 17:57:24 UTC, Kohsuke Kawaguchi wrote: > >> >> >> On Fri, Mar 2, 2018 at 9:26 AM Bill Dennis wro

Re: [GSoC 2018] - Preliminary announcement

2018-03-06 Thread Dyuti De
Hello, I am excited to be a mentor for GSoC projects. I hope I am not too late. I am checking the list of existing ideas to tag in. Thanks, Dyuti On Friday, 15 December 2017 20:01:54 UTC+5:30, Oleg Nenashev wrote: > > Hi all, > > I am preparing to the launch of Google Summer of Code 2018 > <