9 jobs running, 120 waiting unable to terminate and UI maybe showing math errors

2016-10-15 Thread Rinaldo DiGiorgio
Hi, Has anyone seen the following type of lock up. We are using pipeline and have carefully wrapped the script with a timeout of 4 hours. All of the running jobs have been there for 4+ hours. None of the UI options are able to terminate the processes. We have concurrent builds turned on.

UI is not visible during execution when running jobs from Jenkins as service

2016-10-15 Thread Victor Martinez
If you need help it is worth provide more details otherwise the community won't be able to understand your question/issue. The Jenkins mailing list page (https://jenkins.io/content/mailing-lists/) suggests the below reference: http://www.catb.org/esr/faqs/smart-questions.html Besides of that,

Re: Monitoring network folder using FSTrigger plugin

2016-10-15 Thread Ram D
Anyone Is it at-least possible??? On Fri, Oct 14, 2016 at 7:06 PM, Ram D wrote: > Hi All, > > Greetings! > Use case: I have to monitor (polling folder) a network folder for build > artifacts (.zip files). When ever there is new .zip file I have to copy it > and trigger

Re: Monitoring network folder using FSTrigger plugin

2016-10-15 Thread Mark Waite
http://superuser.com/questions/344775/passing-unc-username-and-password-within-a-unc-path suggests that there is no syntax which will allow you to embed the username and password in the network path. You might need to assure that network path is already mounted on your Windows agents. You could

Pipeline plugin - How do I find directories?

2016-10-15 Thread Jonathan Hodgson
Hi, I need to find all the folders with a given name which are in my workspace (well in fact I need to find their parent folders) A quick test with findFiles indicates it only finds files, not folders. -- You received this message because you are subscribed to the Google Groups "Jenkins

Re: Docker Slaves plugin - how to specify volumes

2016-10-15 Thread Qiang
Hi, Nicolas, One example I can think of: for maven build, we want to cache the downloaded dependencies so we don't have to download them every time. So in that case, I was thinking to cache on the host, or a data volume. Any suggestions? Thanks, Qiang On Saturday, October 15, 2016 at

Re: Jenkins with Cucumber not working, please help !!

2016-10-15 Thread Victor Martinez
If you google a bit you can find some video tutorials of using Jenkins and Cucumber: - https://www.google.co.uk/webhp?sourceid=chrome-instant=1=2=UTF-8#q=jenkins+cucumber=vid Hope it helps Cheers On Saturday, 15 October 2016 20:23:36 UTC+1, Vinoth Kannan wrote: > > Hi Rachel, > > Thanks for

Re: Docker Slaves plugin - how to specify volumes

2016-10-15 Thread nicolas de loof
Hi, There's no technical limitation to use this option (we actually already support it to allow docker.sock bind mount on a dedicated side container), but our experience is most user use this for bind-mount, which result in permission issues and in most case are just short terms workarounds to

Re: Automated Jenkins Plugin/Dependency Management

2016-10-15 Thread Daniel Beck
> On 14.10.2016, at 22:03, Maciej Wiczynski wrote: > > I looked in https://repo.jenkins-ci.org/releases/org/jenkins-ci/plugins/ and > don't see rebuild plugin listed. > I did find it in https://updates.jenkins-ci.org/current/update-center.json > but don't see how to set

Re: Jenkins with Cucumber not working, please help !!

2016-10-15 Thread Vinoth Kannan
Hi Rachel, Thanks for replying. I am actually starting the Jenkins using java -jar jenkins.war command in my local. so when i restart my machine even that would be restarted right/when i execute the command again that gets restarted. Still i am facing this issue. I have planned for a demo of

Re: Docker Slaves plugin - how to specify volumes

2016-10-15 Thread Qiang
Thank you for posting the response ! I do need to rethink my strategy now. Even though I need to solve legacy problems in a short term , I agree that it does not become a requirement :) So for moving data between containers , what options can I explore ? And is there instruction to use side

Re: Automated Jenkins Plugin/Dependency Management

2016-10-15 Thread Daniel Beck
> On 15.10.2016, at 20:47, Daniel Beck wrote: > > As the update center JSON tells you, its groupId is not > org.jenkins-ci.plugins. > > https://repo.jenkins-ci.org/releases/com/sonyericsson/hudson/plugins/rebuild/rebuild/ Missed the newest response, sorry about that. > On

Thread Dump taken when nodes are stuck shows write to path that doesn't exist

2016-10-15 Thread Rinaldo DiGiorgio
Thread Dump on stuck nodes shows a write to a directory that doesn't exist. Enter code here... nohup sh -c echo $$ > '/scratch/jenkins/workspace/9-dev/test@tmp/durable-2a0a59bc/pid'; jsc=durable-91dafd1061fa359e40efc6bde9ffc7a5; JENKINS_SERVER_COOKIE=$jsc

How to have "withDockerServer" for all jobs run on a given node?

2016-10-15 Thread Eric Smalling
Just now jumping into playing with Jenkinsfile + Docker and am finding myself having to put withDockerServer([credentialsId: '...', uri: 'tcp://...:2376']) around all of my pipelines to point my slave node at my Docker host. Is there a good way to set up DOCKER_HOST and credentials on a slave

Re: Pipeline plugin - How do I find directories?

2016-10-15 Thread Rachel
Hi Jonathan, I think it's not available that utility. Alternatively, it's possible to use find command (if Linux): node { stage 'Create folders in workspace for showing' sh '''#!/bin/bash +x mkdir -p my_folder1/my_subfolder_1.1/my_subfolder_1.1.1 mkdir -p

Re: Pipeline plugin - How do I find directories?

2016-10-15 Thread Rachel
Hi Jonathan, I think that utility is not available. Alternatively, it's possible to use find command (if Linux): node { stage 'Create folders in workspace for showing' sh '''#!/bin/bash +x mkdir -p my_folder1/my_subfolder_1.1/my_subfolder_1.1.1 mkdir -p

Re: pipeline - groovy - file paths on windows?

2016-10-15 Thread Rachel
Hi Jonathan, You might check: - When it's said "Source folder does not exist", check that really exists and it's right. - Jenkins process on slave has permissions on that path. I hope be useful. Best regards, Rachel El sábado, 15 de octubre de 2016, 0:17:25 (UTC+2), Jonathan