Re: Jenkins is hanging...

2012-07-27 Thread Sami Tikka
I guess this means the JVM has run out of space in the permgen pool. There should be an exception in the syslog about it. (Although a couple of days ago when I ran out of heap, there was no exception logged until I killed the JVM, strange...) You need to provide -XX:MaxPermSize=256m (or som oth

Re: Help with artifacts archiving

2012-07-27 Thread طلال Anthony-Peter-Thomas رابعة
Hello, I have a similar process. Promotions can't archive the artifacts so what I did instead was create a second project… * First project runs. If successful, it creates an artifact of the distribution. * If promoted, it calls on the second project to perform the task. * Second project uses

Jenkins is hanging...

2012-07-27 Thread Brad Knowles
Folks, Following the instructions at , I got the thread dump and the heap summary information from a Jenkins installation that is hanging. Jenkins did proceed to finish doing the build and the rake task created the .dmg that it w

Re: email-ext plugin sends two emails

2012-07-27 Thread Slide
Already fixed and will be in 2.25, please see the JIRA Matthew filed. On Fri, Jul 27, 2012 at 10:05 AM, Chris Withers wrote: > I had the same experience as Matthew, feels like a bug to me... > > Chris > > > On 19/07/2012 11:30, Slide wrote: >> >> Or you could do it with a pre-send script... >> >>

Re: upstream changeset info in the email-ext notify from downstream project

2012-07-27 Thread Chris Withers
On 25/07/2012 08:45, michael chiu wrote: I don't know how to get upstream's changeset in email-ext . Do you know how to access upstream's changeset in groovy in email-ext ? From a previous thread where I asked the same thing, here's a reply from Slide: Original Message Sub

Re: xx Developer - xx - 12 Months Contract positions

2012-07-27 Thread Chris Withers
On 24/07/2012 18:19, Syed wrote: Hi, Hope you are doing well, Please find this Requirement of our Direct Client, if it looks interested please reply me ASAP, requirement mentioned below: How about you not spam inappropriate lists? Can someone kickban this muppet please? Chris -- Simplistix

Re: email-ext plugin sends two emails

2012-07-27 Thread Chris Withers
I had the same experience as Matthew, feels like a bug to me... Chris On 19/07/2012 11:30, Slide wrote: Or you could do it with a pre-send script... On Thu, Jul 19, 2012 at 3:28 AM, wrote: I am using the very useful email-ext plugin, and I have it configured to send emails for: Improvement

Re: Guidelines/best practices building embedded linux

2012-07-27 Thread Rich Pixley
space take long enough that jenkins thinks they've failed. Or maybe I'm not understanding the question. --rich On 20120727 07:46, Bue Petersen wrote: Hi, anyone having experience building an embedded linux setup with Jenkins? Currently I build on a linux host using a shell script getting

failure setting up slave...

2012-07-27 Thread Rich Pixley
I'm trying to set up my first slave and I'm running into a problem I don't understand or know how to debug. Both machines are ubuntu-12.04, standard ubuntu jenkins install, configured for " Project-based Matrix Authorization Strategy". It looks to me as though my script has successfully conta

Re: Help with artifacts archiving

2012-07-27 Thread Sami Tikka
I'm not sure it is even possible to archive artifacts in a build promotion action. The Promotion plugin probably just collects all actions into the list of promotion actions regardless if they make any sense or have been tested to work in the promotion context. The promotion does not have its ow

Re: Guidelines/best practices building embedded linux

2012-07-27 Thread Sami Tikka
I do not have real experience on how to build embedded linux with Jenkins, but I did once work for a project embedding FreeBSD, so it is probably close enough. I don't think there's anything tricky about it. If you cannot set up an environment for building and make the build with one or two comm

RE: Jenkins slow coming up and clicking on views with builds with lots of history

2012-07-27 Thread nathang
We had similar issues regardless of used version. We tracked them to fingerprint analysis (though we dont use fingerprints explicitly anywhere) and subsequently the copyartifacts plugin from version greater than 1.19 i think. If you dont use fingerprints, just delete their folder to see if it'll

Re: Slave admin permissions

2012-07-27 Thread Jminne
I opened an issue on this. https://issues.jenkins-ci.org/browse/JENKINS-14610 On Tuesday, November 22, 2011 10:40:52 AM UTC-6, Ann Campbell wrote: > > I was working with a user yesterday to set up a slave node. > > I granted him all slave permissions (Configure, Delete, Create, > Disconnect, Co

Re: Promoted builds plugin and custom workspace

2012-07-27 Thread cjo
There is no change that has occurred as the promotion is its own job, and therefore has its own ${JOB_NAME} which is parent_jobname/promotions/< promotion_name> So the behaviour is consistent when using the custom workspace option. If you read the wiki page [1] for the plugin there is a warning

Promoted builds plugin and custom workspace

2012-07-27 Thread Matthew.Webber
We use the promoted builds plugin, and I've just discovered an annoying difference in behaviour depending on whether a custom workspace is used. Previously, I used a custom workspace: ${JENKINS_WORKSPACE_PARENT}/${JOB_NAME} When a promotion ran, the working directory was set to ${JENKINS_WORKSPA

Guidelines/best practices building embedded linux

2012-07-27 Thread Bue Petersen
Hi, anyone having experience building an embedded linux setup with Jenkins? Currently I build on a linux host using a shell script getting repositories and setting up environment, and the uses bitbake and OpenEmbedded to build a toolchain and an image. I have searched for some time, but can not

RE: Jenkins slow coming up and clicking on views with builds with lots of history

2012-07-27 Thread Matthew.Webber
Starting Jenkins with -Dhudson.model.Hudson.logStartupPerformance=true might give you some additional information about startup time. See https://wiki.jenkins-ci.org/display/JENKINS/Features+controlled+by+system+properties We run Jenkins off a local disk for speed, and back up Jenkins home once

Jenkins slow coming up and clicking on views with builds with lots of history

2012-07-27 Thread swerner
We recently moved off Hudson to the latest Jenkins (1.475). After doing so, we have noticed an increased startup time and clicking on tabs takes longer too. Upon further investigation, these jobs typically have a history of 100 or so builds. Dumping the stack while waiting produces the follow

Help with artifacts archiving

2012-07-27 Thread Mauro Molinari
Hello, I'm quite new to Jenkins and I need some help with archiving artifacts. I have my project and I can build it correctly. Then, in the project configuration I set: Promote builds when... Only when manually approved Actions: 1) archive the artifacts; files to archive: master/build/distributio

PMD plugin breaks with Jenkins 1.456 and up

2012-07-27 Thread Kjetil Ødegaard
I'm trying to upgrade Jenkins and the PMD plugin, but I keep getting an exception [1] on certain Maven jobs which use PMD. Is this a known problem? It works fine if I downgrade Jenkins to 1.455. Versions 1.456, 1.457, 1.460, 1.465 and 1.473 all fail with this exception. PMD plugin version 3.29,

Re: Notifying when a job hasn't run for a set period

2012-07-27 Thread Mark Waite
Maybe you could use the XML API to query the time stamp of the build in an external script?   For example, I can see the time stamps (in XML) of all the builds for the job named "MyJenkinsJob" job with this syntax: http://localhost:8080/job/MyJenkinsJob/api/xml?tree=builds[timestamp] You can l

Re: Verify downloaded jpi-files

2012-07-27 Thread Richard Lavoie
Then a simple sha1 validation once the file has been completely downloaded would solve the issue... I'd look into it but I didn't receive my laptop yet from the repair center. Should be easy enough to add anyhow if any one want to contribute a patch for this improvment. Richard On 2012-07-27

Re: Verify downloaded jpi-files

2012-07-27 Thread Fredrik Orderud
Thank you for the quick responses. I've now forwarded the request to https://groups.google.com/forum/?fromgroups#!topic/jenkinsci-dev/ueaAOGrtVDI kl. 12:45:09 UTC+2 fredag 27. juli 2012 skrev Stephen Connolly følgende: > update center incudes the sha1 of the file > > On 27 July 2012 11:41, Richar

Re: Verify downloaded jpi-files

2012-07-27 Thread Stephen Connolly
update center incudes the sha1 of the file On 27 July 2012 11:41, Richard Lavoie wrote: > This should be relatively easy with CRC or MD5 content check once > downloaded but I don't know if the plugin repository gives that information > to jenkins already. > > Richard > > > > On 2012-07-27, at 06

Re: Verify downloaded jpi-files

2012-07-27 Thread Richard Lavoie
This should be relatively easy with CRC or MD5 content check once downloaded but I don't know if the plugin repository gives that information to jenkins already. Richard On 2012-07-27, at 06:31, Sami Tikka wrote: > That's an excellent idea. I believe there already is some verification in th

Re: Handshaking issue between master and slave

2012-07-27 Thread Varghese Renny
yeah...i changed that..also..in slave logs i can see java socket exception and connection reset.. When i start with lauch button as well as command prompt it s showing server rejected the connection.. Any comment would be appreciable.. Regards,

Re: Verify downloaded jpi-files

2012-07-27 Thread Sami Tikka
That's an excellent idea. I believe there already is some verification in the plugin loading process but maybe it happens too late. jenkins-users list, however, is mostly visited by ... users of jenkins. If you want someone to actually do something, you could find jenkins developers on the jenk

Re: Handshaking issue between master and slave

2012-07-27 Thread Sami Tikka
Did you change Jenkins own address in the global configuration? You should change it every time you change the address of Jenkins. It does not affect a lot of thing but slave connections is one place where it is critical for Jenkins to know its own address. -- Sami Varghese Renny kirjoitti 27

Verify downloaded jpi-files

2012-07-27 Thread Fredrik Orderud
In my corporate environment, we are working behind a firewall that returns "nice" HTML webpages with detailed error instructions instead of a plain "connection refused" error in situations of invalid PROXY settings. We have experienced several times that Jenkins servers with improper PROXY sett

Re: job build directory is changed in jenkins

2012-07-27 Thread cjo
What is your setup? Does it have master + slaves? The master and slave paths are different. Did the jobs run on the same slave? Have you updated the Jenkins version between those two builds? Has anyone altered the path for the master workspace in /configure advanced item below the home path. Ho

Notifying when a job hasn't run for a set period

2012-07-27 Thread Chemmo
Hey, Is there a plugin/other way to detect if a job hasn't run for (say) a day. We have a remote trigger on one of our jobs which would be handy to know if it hasn't run recently. Thanks

Handshaking issue between master and slave

2012-07-27 Thread Varghese Renny
hi, How to solve this error...Error occured since i make master ip to public and assign DNS.. Jul 27, 2012 12:44:17 PM hudson.remoting.jnlp.Main$CuiListener INFO: Hudson agent is running in headless mode. Jul 27, 2012 12:44:17 PM hudson.remoting.jnlp.Main$CuiListener status INFO: Locatin

job build directory is changed in jenkins

2012-07-27 Thread ZHANG Xinchun A
Hello, I got a urgent problem. Yesterday, my jobs would build in "Building in workspace d:\jenkins\workspace\UTT_Auto_Execution" That's right. Because my build script is at that place But today, I run the job again. It changed to "Building in workspace d:\jenkins\jobs\UTT_Auto_Execution\wor