Re: build docker container inside dockerized Jenkins

2017-06-06 Thread nicolas de loof
to use docker-slaves plugin you'll need docker socket or a DOCKER_HOST url set so master can run docker commands 2017-06-07 4:33 GMT+02:00 Jeeva Chelladhurai : > > docker-slaves don't follow the classic slave approach, it doesn't use > any transport (ssh, jnlp) but the plain docker CLI terminal e

Re: build docker container inside dockerized Jenkins

2017-06-06 Thread Jeeva Chelladhurai
> docker-slaves don't follow the classic slave approach, it doesn't use any transport (ssh, jnlp) but the plain docker CLI terminal emulation. Does that mean I have to bind mount docker socket to the Jenkins container? -Jeeva On Tue, Jun 6, 2017 at 10:07 PM, nicolas de loof wrote: > docker-sla

Warnings plugin extension: how to make it show up and to define input log file

2017-06-06 Thread Simon M
So, after getting my own log parser written and built, my next questions are: 1. How to get it to show up when adding a new parser? What needs to be defined for this? 2. How the input file to the parser is defined. I would very much appreciate any advice on these topics. My present current v

Re: Test failures on new plugin ** Update ** Still issue with @Override

2017-06-06 Thread Simon Matthews
Finally, I got it to pas the tests. I added the following to the dependencies in pom.xml: org.apache.httpcomponents httpclient 4.5.1 test org.apache.httpcomponents httpcore 4.4.6 test However, it still won't accept t

Confluence maintenance window tomorrow (2017-06-07) from 15:30 - 17:30 UTC

2017-06-06 Thread R. Tyler Croy
We're planning to perform a Confluence upgrade tomorrow in a maintenance window between 15:30 and 17:30 UTC (8:30 - 10:30 PDT). The ticket tracking this work is: https://issues.jenkins-ci.org/browse/INFRA-1201 This is related to, and a continuation of, the work we did previously in April to

Re: Test failures on new plugin

2017-06-06 Thread Simon M
I should also note, just in case it is related that it would not build unless I commented out the "@Override" statement for the "getID()" method. Could this be related? Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile (default-compile) on project bluepearl: Co

Extended Choice Parameter plugin iconlib

2017-06-06 Thread Michael Trimarchi
Hi I'm trying to render my form in a good way but iconlib seems not work and rendered in firefox. Does anyone have the same issue? Another small problem is about the rendering: * I have variable name on top left * description on bottom right * layout is a bit messup Can anyone suggest to improve

Re: Test failures on new plugin

2017-06-06 Thread Simon M
Thanks for the offer of help. I have pushed my project to github: https://github.com/SimonMatthews-BP/BPWarnings Simon On Tuesday, June 6, 2017 at 11:35:07 AM UTC-7, slide wrote: > > I haven't seen that issue before, can you post the link to your source > code so people can take a look? > > On

Re: Test failures on new plugin

2017-06-06 Thread Stephen Connolly
Make sure you have an index.jelly giving the plugin description On Tue 6 Jun 2017 at 19:35, Slide wrote: > I haven't seen that issue before, can you post the link to your source > code so people can take a look? > > On Tue, Jun 6, 2017 at 11:29 AM Simon M > wrote: > >> Anyone? Any ideas? >> >>

Pipeline: pass all parameters down to downstream jobs

2017-06-06 Thread Craig Rodrigues
Hi, I have a Jenkins pipeline with lots of parameters that I want to pass down to downstream jobs. I posted this question to Stackoverflow: https://stackoverflow.com/questions/44397910/jenkins- pipeline-pass-all-parameters-down-to-downstream-jobs If someone could help answer that, that would be

Re: Test failures on new plugin

2017-06-06 Thread Slide
I haven't seen that issue before, can you post the link to your source code so people can take a look? On Tue, Jun 6, 2017 at 11:29 AM Simon M wrote: > Anyone? Any ideas? > > > On Monday, June 5, 2017 at 5:45:51 PM UTC-7, Simon M wrote: >> >> I am in the process of writing a custom parser to wor

Re: Test failures on new plugin

2017-06-06 Thread Simon M
Anyone? Any ideas? On Monday, June 5, 2017 at 5:45:51 PM UTC-7, Simon M wrote: > > I am in the process of writing a custom parser to work with the Warnings > plugin. > > For now, I have taken the second route described in the documentation: > "Writing a new standalone parser that will be deploy

Jenkins GitHub polling issue

2017-06-06 Thread Joshua Noble
Forgot link: https://curl.haxx.se/docs/vuln-7.19.4.html -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view th

Jenkins GitHub polling issue

2017-06-06 Thread Joshua Noble
I would start by updating your version of curl. 7.19.4 is from March of 2009 and has 32 known vulnerabilities. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Remove / disable the Replay capability for Jenkins Pipeline consumers

2017-06-06 Thread Jim Coll
I want to remove the ability for users of Jenkins Pipeline to be able to modify the Jenkinsfile or other loaded pipeline scripts using the Replay option. I have tried removing the permission from the roles that I've assigned to a user group but for some reason they still have the access to the

Re: build docker container inside dockerized Jenkins

2017-06-06 Thread nicolas de loof
docker-slaves don't follow the classic slave approach, it doesn't use any transport (ssh, jnlp) but the plain docker CLI terminal emulation. 2017-06-06 18:19 GMT+02:00 Jeeva Chelladhurai : > currently I am using SSH slaves for building docker images. Is it a > recommended practice? > > How does D

JIRA downtime tomorrow (2017-06-07) between 16:00-18:00 UTC

2017-06-06 Thread R. Tyler Croy
The Oregon State University Open Source Lab (OSUOSL), which still hosts some of our infrastructure is moving hardware around in their datacenter tomorrow and will be briefly rebooting the machine which runs JIRA. The outage should be between 10-15 minutes in the 16:00-18:00 window, but we don't ha

Re: build docker container inside dockerized Jenkins

2017-06-06 Thread Jeeva Chelladhurai
currently I am using SSH slaves for building docker images. Is it a recommended practice? How does Docker slave plugin works? Does function like a slave or piggyback on any of the existing slaves? https://wiki.jenkins-ci.org/display/JENKINS/Docker+Slaves+Plugin On Tue, Jun 6, 2017 at 7:45 PM, nic

Re: build docker container inside dockerized Jenkins

2017-06-06 Thread nicolas de loof
When you're running Jenkins in a container don't build on master, always connect a slave. This slave can also be a container. Doing this you'll enforce process isolation. To run docker commands like 'docker build' the commonly used approach is to bind mount /car/run/docker.sock. that's beer red win

build docker container inside dockerized Jenkins

2017-06-06 Thread Jeeva Chelladhurai
I run by Jenkins inside a docker container. Now I need to build docker images from this Jenkins instance. Would you please suggest me some options. -- Jeeva K S Chelladhurai -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from

Re: Creating new account at issues.jenkins-ci.org

2017-06-06 Thread Thiago Carvalho Davila
Same problem here. Em 05/06/2017 03:55:13, Mirek S escreveu: > Hello! > > When trying to create account at > issues.jenkins-ci.org> (i.e. > > accounts.jenkins.io> ) one needs to send an email to jenkinsci-accounts > google group. I sent my "additional verification" twice and received no > rep

Re: many parallel stages

2017-06-06 Thread Artur Szostak
>From what I understand neither concurrent stages nor stages embedded in stages >are supported. I think you can only have parrallel within a stage block. But not the other way around. From: jenkinsci-users@googlegroups.com on behalf of Chris Overend Se

AW: RunListener nullpointer exception

2017-06-06 Thread Lukas Resch
Hi, The update to Jenkins 2.64 and installing the latest pipeline plugins today fixed the issue for me. Regards -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: GitHub Branch Source Plugin - Suppress status report to github?

2017-06-06 Thread Stephen Connolly
Not yet... On Tue 6 Jun 2017 at 08:19, Danny Rehelis wrote: > Is it possible to suppress GitHub Branch Source status report to github? > We'd like to use githubNotify step instead. > > -- > You received this message because you are subscribed to the Google Groups > "Jenkins Users" group. > To un

GitHub Branch Source Plugin - Suppress status report to github?

2017-06-06 Thread Danny Rehelis
Is it possible to suppress GitHub Branch Source status report to github? We'd like to use githubNotify step instead. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email