Re: Help me with this error

2017-01-11 Thread harold . putman
Is Git properly installed on your Jenkins server? https://support.cloudbees.com/hc/en-us/articles/218156697-Git-Failed-to-connect-to-repository-Could-not-init-tmp On Wednesday, January 11, 2017 at 7:19:44 AM UTC-5, Sathish M wrote: > > > Failed to connect to repository : Error performing

Blue Ocean Parameters

2017-01-11 Thread harold . putman
I have a pipeline build that uses the ExtendedChoice plugin to let a user choose which profiles to build from a multimodule maven project. [ ] Everything [ ] UI [ ] Backend [ ] Admin tools Blue Ocean does not prompt for parameters when the build is Run, so I assume I need to prompt for input.

Parsing XML with Pipeline script

2016-12-01 Thread harold . putman
I was trying to parse and XML file with XmlSlurper like described here (http://groovy-lang.org/processing-xml.html) def text = ''' Groovy ''' def list = new XmlSlurper().parseText(text) println list.technology.name.text() Using a GPath expression like

Re: AWS EC2 API Plugin

2017-04-24 Thread harold . putman
Check https://plugins.jenkins.io/ On Monday, April 24, 2017 at 11:00:20 AM UTC-4, Johnathan Kanarek wrote: > > Hi, > > I need to create images, run instances, start instances and stop instances > during build. > > Is there an existing plugin that enable AWS EC2 APIs as build steps? > > I don’t

Re: Job properties are not (should be !?) cumulative

2017-06-16 Thread harold . putman
Yes it is working as designed. https://jenkins.io/doc/pipeline/steps/workflow-multibranch/#properties-set-job-properties "Note that any existing properties of the job will be replaced with the list given here." It would be nice to be able to modify job properties rather than overwrite