Re: Unable to see groovy script editor in pipeline job

2016-12-29 Thread Ramanathan Muthaiah
Minor correction in my previous post: On Thursday, December 29, 2016 at 3:09:47 PM UTC+5:30, pa7751 wrote: >> >> I have created a Jenkins Pipeline Job. However, I am unable to see the >> option to enter the pipeline script. Attached is the screenshot. Pls >> suggest how I can get the editor. I a

Re: Unable to see groovy script editor in pipeline job

2016-12-29 Thread Ramanathan Muthaiah
Hello, On Thursday, December 29, 2016 at 3:09:47 PM UTC+5:30, pa7751 wrote: > > I have created a Jenkins Pipeline Job. However, I am unable to see the > option to enter the pipeline script. Attached is the screenshot. Pls > suggest how I can get the editor. I am using jenkins v2.32.1 > Create J

Re: Bitbucket HTTPS git clone failed via the pipeline script (Invalid username or password)

2016-12-29 Thread Mark Waite
I guess you could declare the credentials in a variable and then reference the variable. My pipelines which checkout from multiple repositories are configured to use credentials and they reference the credentials by name. Mark Waite On Tue, Dec 27, 2016 at 9:03 PM wrote: > Thanks for any of yo

Check if variable exists / Github Organization Folder Wrapper

2016-12-29 Thread Gavin Mogan
Hi there, I'm setting up a bunch of examples in a dedicated github org, with jenkins file in each one. I would like to have errors emailed out, without hardcoding the email in every script. Is it possible check if a variable exists in pipeline? if (hasVariable("DEFAULT_ERROR_EMAIL")) { mail

Re: Description of memory sharing between master and slaves in pipelines?

2016-12-29 Thread Stephen Connolly
It depends. You are going to have to just learn about Channels Ignore Stdio and friends, they are distracting you. What you have is a Channel... how you got that channel is irrelevant... I have an implementation of Channel (in closed source product) that doesn't even have a persistent connection

Jenkins nested view vs nested folder structure ?

2016-12-29 Thread user_dev
I am trying to understand the use case of having a nested folder structure in Jenkins to manage the different set of jobs. Previously I have been using nested view plugin to achieve that. But with folder structure in place what advantage it brings over nested view and subviews. Please explain.

Re: Pipeline failing to load Properties file using the EnvInject plugin

2016-12-29 Thread Cédric COPY
Hey Brendan, Did you sucessfully load properties with envInject plugin? I am facing the same issue. Directly declaring an environment variable is ok, but loading the properties file it from either master or from the slave, and it doesn't seems to work. Thanks. Le vendredi 21 octobre 2016 04:

Re: Automating Jenkins Installation Steps

2016-12-29 Thread Mark Waite
Refer to https://www.codeproject.com/articles/1056410/setup-configure-jenkins-for-your-team-in-automated as a possible guide for Ansible. https://groups.google.com/d/msg/jenkinsci-users/sRq2kiQscVE/qMvllU5vAgAJ provides the link for a chef cookbook. http://puppet-jenkins.readthedocs.io/en/lat

Re: Description of memory sharing between master and slaves in pipelines?

2016-12-29 Thread Ted Xiao
More info https://wiki.jenkins-ci.org/display/JENKINS/Making+your+plugin+behave+in+distributed+Jenkins On Thursday, December 29, 2016 at 10:24:12 PM UTC+8, Ted Xiao wrote: > > just serialize and deserialize, it is one-way only, check out > https://github.com/jenkinsci/remoting/blob/master/src/m

Re: Description of memory sharing between master and slaves in pipelines?

2016-12-29 Thread Ted Xiao
just serialize and deserialize, it is one-way only, check out https://github.com/jenkinsci/remoting/blob/master/src/main/java/hudson/remoting/UserRequest.java If you want data shared among slaves, check out http://jgroups.org/javadoc4/org/jgroups/blocks/PartitionedHashMap.html On Thursday, Dece

Unable to see groovy script editor in pipeline job

2016-12-29 Thread PK A
I have created a Jenkins Pipeline Job. However, I am unable to see the option to enter the pipeline script. Attached is the screenshot. Pls suggest how I can get the editor. I am using jenkins v2.32.1 -- You received this message because you are subscribed to the Google Groups "Jenkins Users" gr

Unable to see groovy script editor in pipeline job

2016-12-29 Thread PK A
I have created a Jenkins Pipeline Job. However, I am unable to see the option to enter the pipeline script. Attached is the screenshot. Pls suggest how I can get the editor. I am using jenkins v2.32.1 -- You received this message because you are subscribed to the Google Groups "Jenkins Users" gr

Re: Multiple distinct junit/testng reports with Jenkins pipeline

2016-12-29 Thread Dan Tran
scratch this jenkins only allows one report per job -D On Wednesday, December 28, 2016 at 11:40:18 PM UTC-8, Dan Tran wrote: > > Hi > > I have a Jenkins pipeline with multiple test stages, instead of aggregate > the report in one step, I would like to do a report per stage with distinct > name

collect all extent reports and roboticFW results for all 7 days using a script ( preferably python )

2016-12-29 Thread Lakshmi narayana
Hi, My Jenkins job runs automated test script of a regression test suite. I wish to collect all extent reports and roboticFW results for all 7 days using a script ( preferably python ) Could you please guide – how to get all reports to generate a dashboard of pass/fail Average count ?