pipeline: feedback

2016-09-01 Thread jieryn
It would be nice if when a Pipeline invokes a Jenkins Job, that the log of that job would be visible inside the Blue Ocean pipeline output similar to the way any other pipeline stage works. We use individual jobs for each stage because it lets us get a lot of reusability for common functions which

Why no X-Registry-Auth header when docker plugin sends pull request?

2016-09-01 Thread hough.ron
Hello all... I'm using Jenkins 2.20, docker plugin 0.16.1, Docker 1.10.3. I have a build slave docker container on a private registry, and I have a "Docker Cloud" set up in Jenkins with a template for the build slave container. When a job tries to provision a slave using this template, it fai

Automating infrastructure with jenkins and chef

2016-09-01 Thread Lavanya pujari
Hi I am working with jenkins for the last two months. I am trying to automate the infrastructure with jenkins and chef but I don't have any idea in doing this.. If anyone have solution or suggestion, please let me know -- You received this message because you are subscribed to the Goo

Re: Setting a new property from Groovy Script to pass to the next job

2016-09-01 Thread Ioannis Moutsatsos
I would write the parameters out to a properties file and have an EnvInject plugin step re-inject them as build properties before your Step 2 script uses them. On Thursday, September 1, 2016 at 6:29:22 PM UTC-4, Mathew Joseph wrote: >

Setting a new property from Groovy Script to pass to the next job

2016-09-01 Thread Mathew Joseph
Hi All, My job involves 2 build steps Step 1 : Groovy script to retrieve a list of files and populate a parameter or environment variable say TEST_FILES Step 2 : VSTEST job that can read TEST_FILES and use that a parameter I have obtained the list of files, but what are the options availabl

Re: Pipeline stage deprecated without block

2016-09-01 Thread Patrick Wolf
As Andrew mentions a "block" is step that requires a closure. The original way that 'stage' was implemented left holes in the usability and some features did not work as well as intended. Namely, concurrency and promotion did not work well and it was hard to define the boundaries of a stage. http

Re: Jenkins LTS v2.7.3 startup errors

2016-09-01 Thread Ashish Yadav
Any idea why I am getting these errors even though I don’t have Role-based or Matrix based or Project based Matrix Authorization strategy enabled? From: Ashish Yadav mailto:ashish.ya...@firemon.com>> Reply-To: "jenkinsci-users@googlegroups.com" mailto:je

Re: Pipeline stage deprecated without block

2016-09-01 Thread Andrew Bayer
Basically, the new syntax is: stage("Checkout") { checkout scm } A. On Thu, Sep 1, 2016 at 6:04 PM, Mark Waite wrote: > Thanks for asking the question! I see the same message and didn't find an > explanation (at least that I understood) of the intention for a block > argument in a stage. >

Pipeline stage deprecated without block

2016-09-01 Thread jerome
Hi, I now have the following message into my pipeline workflow but I don't really know what exactly is the new proper way of doing it. Here's a simplified version of what I do node { stage 'Checkout' ... stage 'Build' ... stage 'Build Unit Tests' ... } but now I see this mess

Re: Pipeline stage deprecated without block

2016-09-01 Thread Mark Waite
Thanks for asking the question! I see the same message and didn't find an explanation (at least that I understood) of the intention for a block argument in a stage. Looking forward to the answer.. Mark Waite On Thu, Sep 1, 2016 at 4:00 PM wrote: > Hi, > > I now have the following message into

Re: How can I host a private Jeinkins Plugin Repo

2016-09-01 Thread Michael Lasevich
I am not sure how much more control you want, but all you need is to generate two JSON files and host them on a web server along with the plugins - should be trivial to do. But why duplicate the work if it is already done for you -M On Thursday, September 1, 2016 at 1:37:36 PM UTC-5, rudy.

Re: How can I host a private Jeinkins Plugin Repo

2016-09-01 Thread rudybone
Thanks but not quite what I'm looking for. I want more controll, e.g either write my own or find the source code for the official Jenkins Update Site. On Monday, August 29, 2016 at 12:28:22 PM UTC-4, rudy...@gmail.com wrote: > > For reasons I won't go into here, I'd like to be able to host my

[ANN]: Contributor Summit - Tuesday Sept 13 @ Santa Clara Convention Center

2016-09-01 Thread Alyssa Tong
Hello, In the past couple of months the events team has been planning a Jenkins Contributor Summit at Jenkins World . This is very similar to past summits held after the Jenkins User Conferences. This year’s focus areas are: Blue Ocean, Pipeline, and S

Re: Do not delete a completed job workspace under all conditions

2016-09-01 Thread Michael Lasevich
Workspaces are meant to be ephemeral and can be deleted/removed at any time. Counting on same workspace being there for every build is a bad idea for many reasons - not the least of which is that the point of using a build system like Jenkins is to have a reliable and repeatable build - if you

Re: Multibranch triggers configuration

2016-09-01 Thread Michael Lasevich
Worth mentioning that the MB "build" is not a build of the code, but indexing of the repo for branch status. So if you schedule it to build every 5 minutes, it will re-index the repo every 5 minutes - but only build the branches that have changes in them and only when there is a change (or howe

Re: LDAP groups and Role Based Authorization no playing nice.

2016-09-01 Thread Michael Lasevich
For what its worth, I believe this is an issue with LDAP Plugin as I was able to recreate it without Role Based auth using Matrix based auth as well >From a little digging I did, it appears it is some odd permissions issue, as if you grand the user explicit admin rights ahead of time, it can rea

Re: Jenkins-LSCI (Life Sciences Continuous Integration) name trademark and usage question

2016-09-01 Thread Andrew Bayer
I believe this needs board approval. A. On Thu, Sep 1, 2016 at 7:25 AM, Ioannis Moutsatsos wrote: > Greetings to all; > > We have developed a number of scientific applications based on Jenkins-CI. > Essentially we are able to deliver scientific workflows and data pipelining > using the Jenkin-C

Re: Jenkins 2.0 job configuration screen UX issues

2016-09-01 Thread Daniel Beck
Known issue that is tracked at https://issues.jenkins-ci.org/browse/JENKINS-35269 > On 01.09.2016, at 15:33, Ashish Yadav wrote: > > Is anyone else experiencing this (horizontal scrolling) issue as well? I have > tried both Chrome and FireFox. Same UI experience. > > > -- > You received thi

Re: maven.jenkins-ci.org connection error

2016-09-01 Thread Daniel Beck
Please see the second entry on https://wiki.jenkins-ci.org/display/JENKINS/Hosting+Plugins#HostingPlugins-Workingaroundcommonissues Also, this is something that should be asked on the dev list. > On 01.09.2016, at 14:52, Damien Coraboeuf wrote: > > Hi, > > When trying to deploy a plugin, I ge

Jenkins LTS v2.7.3 startup errors

2016-09-01 Thread Ashish Yadav
I am currently running Jenkins LTS v2.7.3. I don't have Role-based or Matrix based or Project based Matrix Authorization strategy enabled. At one time I did. However, not I have 'logged-in users can do anything'. During the start-up (or restart) of Jenkins, I am seeing a lot of the following err

maven.jenkins-ci.org connection error

2016-09-01 Thread Damien Coraboeuf
Hi, When trying to deploy a plugin, I get the following error: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.6:deploy (default-deploy) on project ontrack: Failed to deploy artifacts: Could not transfer artifact org.jenkins-ci.plugins:ontrack:hpi:2.22.2 from/to m

Jenkins-LSCI (Life Sciences Continuous Integration) name trademark and usage question

2016-09-01 Thread Ioannis Moutsatsos
Greetings to all; We have developed a number of scientific applications based on Jenkins-CI. Essentially we are able to deliver scientific workflows and data pipelining using the Jenkin-CI framework and selected ecosystem plugins. Much of the philosophy and strategy has been presented as part o