RE: Jenkins become unresponsive

2014-10-20 Thread Rupali Chorghe
Hi Terrence, Thanks for reply. Problem we are facing is when Jenkins becomes unresponsive, everything that needs Jenkins URL, becomes inaccessible. So we decided to use Jconsole. But we didn't find abnormalities in CPU and memory usage when monitored using jconsole. Regards, Rupali On 21-Oct-2014

Re: Fwd: Disconnect node / reconnect node programmatically (Groovy)

2014-10-20 Thread pjl83211
Just to be clear, the solution you proposed for connecting is not just for handling the temporary offline case? Do you also have a solution for *disconnecting a slave,* not just temporarily taking it offline (I want to close the channel of communication between master and slave)? In the* reco

Configuration of Pull Request job with multiple SCM's

2014-10-20 Thread Barbara Garza
Hi, I did a configuration of a job that depends on another repo. I want to build and run the tests when I do a pull request on repo X, but the behavior of the job is this: Grabs the last commit of the pull request in repo X, for example PR # 5, which is expected. but... for the repo Y i need i

RE: Jenkins become unresponsive

2014-10-20 Thread Dunnigan, Terrence J
Are you using the Jenkins Monitoring plugin? https://wiki.jenkins-ci.org/display/JENKINS/Monitoring It might help to provide some context and additional information when Jenkins is not responding. Terry From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf

Jenkins Global Build Search - Cannot choose start date end date

2014-10-20 Thread prathibha ayyappan
Has anyone else seen this happening? I cannot select a start and end date when i go to the Global build search page. -- 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 emai

Re: Fwd: Disconnect node / reconnect node programmatically (Groovy)

2014-10-20 Thread felix
something like import jenkins.model.*; for (slave in Jenkins.instance.slaves) { def comp=slave.computer; if (comp.isOffline()) { if (comp.getOfflineCauseReason().matches(".*computer was idle.*")) { comp.connect(true); } else { println("${comp.name} went offline unexpected"

RE: How to check the current status of a Job, via REST API

2014-10-20 Thread Patricia Wright
You can add more depth for more info. /job//api/xml?depth=1 then look at the list and find the most recent status. From: jenkinsci-users@googlegroups.com on behalf of Sajith Kariyawasam Sent: Monday, October 20, 2014 7:44 AM To: jenkinsci-users@googlegroups.c

Re: Unable to get Jenkins to start on MacOS-X 10.10 Yosemite

2014-10-20 Thread Robin Mills
The final bit of the jigsaw was correctly indentified by Roy Willemse in https://issues.jenkins-ci.org/browse/JENKINS-23543 $ sudo chmod 777 /var/log/jenkins/jenkins.log Then start jenkins with launchctl: $ sudo launchctl load /Library/LaunchDaemons/org.jenkins-ci.plist Happiness! Robin On

Re: Unable to get Jenkins to start on MacOS-X 10.10 Yosemite

2014-10-20 Thread Robin Mills
The final bit of the jigsaw was correctly indentified by Roy Willemse in https://issues.jenkins-ci.org/browse/JENKINS-23543 $ sudo chmod 777 /var/log/jenkins/jenkins.log Then start jenkins with launchctl: $ sudo launchctl "$1" /Library/LaunchDaemons/org.jenkins-ci.plist Happiness! Robin On

Jenkins become unresponsive

2014-10-20 Thread Rupali
Hi, We are facing one weird issue. Intermittently, our Jenkins URL becomes inaccessible. Only restarting Jenkins service resolves the issue. We are using Jenkins 1.565. We tried to analyses memory and CPU usage when such state appears. But CPU usage looked very low around 2% and memory usage b

How to check the current status of a Job, via REST API

2014-10-20 Thread Sajith Kariyawasam
Hi all, I want to check the current status of a job, via REST API.. I found /job//api/xml gives me the xml with information, but I couldn't find any element related to "current status". I want to get whether the job is currently being built, or built has completed with success or failure. Is the

Re: Unable to get Jenkins to start on MacOS-X 10.10 Yosemite

2014-10-20 Thread Robin Mills
I've now got jenkins running and and the server configuration is available. I added JENKINS_HOME /Users/Shared/Jenkins/Home to the defaults $ defaults write /Library/Preferences/org.jenkins-ci JENKINS_HOME /Users/Shared/Jenkins/Home then started the server from Terminal: sudo /Library/Application

how to specify a git branch to build

2014-10-20 Thread Ivan Kanis
Hello, We are using a job with multiple git branches and it's working very well. I am agreeably surprised that it does multiple builds when two branches have changed with a push. However when we run the build manually we cannot specify which branch to build. It defaults to the last branch built w

'Got the class not registered exception' system log message

2014-10-20 Thread David Aldrich
Hi Today I upgraded from Jenkins 1.580 to 1.585. I am now seeing multiple instances of the following message in the System Log: Oct 20, 2014 10:45:29 AM WARNING org.jinterop.dcom.core.JIComServer initialise Got the class not registered exception , will attempt setting entries based on status f

Re: Unable to get Jenkins to start on MacOS-X 10.10 Yosemite

2014-10-20 Thread Robin Mills
I've got it running with this command: sudo /usr/bin/java -Dfile.encoding=UTF-8 -XX:PermSize=256m -XX:MaxPermSize=512m -Xms256m -Xmx512m -Djava.io.tmpdir=/Users/Shared/Jenkins/tmp -jar /Applications/Jenkins/jenkins.war It seems to have lost all server configuration (forgotten its builders, job

Re: Unable to get Jenkins to start on MacOS-X 10.10 Yosemite

2014-10-20 Thread Robin Mills
Daniel Thanks for contributing to this. Very much appreciated. I've made some progress. I've discovered that Jenkins is running OK on my Mac Book Pro which has been upgraded to Yosemite. The situation with my MacMini is a little different from JENKINS-23543 in which Daniel Roy has reported t