Re: How to get the result of the triggered job in one email

2012-11-12 Thread AdvanTiSS
We have almost similar configuration: 1."Main Build" Job - triggered by SCM, make chekout, compiling code and unit-testing. Output file iz zip archive with application binaries which deployed into build - artifacts directory. 2. "Functional Tests" Job - triggered from upstream "Main Build" job,

Re: async calls in the build task

2012-11-12 Thread rp
bumping this if possible. I am writing a utility in node.js to do this, but I am sure there is got to be a better way to do this. Please feel free to ask if my question was not clear enough. thanks - Rajat On Sunday, 11 November 2012 14:39:32 UTC, rp wrote: > > I am trying to do some integrati

Re: Build flow parallel execution issue

2012-11-12 Thread Reuben Gow
Hi Nicolas, Have you had chance to look at this issue? On Friday, 21 September 2012 09:58:06 UTC+1, Nicolas De loof wrote: > > This is not expected. First unstable/failed build in a sequence is > supposed to stop the execution. > what version of the plugin are you using ? I committed an attempt

SVN version compatibility question

2012-11-12 Thread David Aldrich
Hi We are using Jenkins SVN plugin version 1.34, which uses a svn 1.6 client. We are planning to upgrade our slaves to use svn 1.7 clients. Is it ok to run a svn 1.6 compatible plugin against svn 1.7 slaves? Best regards David

Re: Jenkins not correctly executing Maven task starting forked jetty.

2012-11-12 Thread Thomas Peeters
I fixed the Jenkins issue by trying a workaround. Instead of asking jenkins to run my Maven job I used a plugin that runs scripts over ssh. This script does that Maven command that doesn't work in Jenkins. This works without a hitch. I still think this is a Jenkins bug, or that's what it l

Re: Build flow parallel execution issue

2012-11-12 Thread nicolas de loof
there's a permission issue with parallel() I have to fix and may explain this issue, not sure yet. I don't have any other assumption what could make this fail 2012/11/12 Reuben Gow > Hi Nicolas, > > Have you had chance to look at this issue? > > > On Friday, 21 September 2012 09:58:06 UTC+1, Nic

Re: How to get the result of the triggered job in one email

2012-11-12 Thread Sven Finsterwalder
> > Promotion can include email-ext step where you can put anythig you want. > So that means with this plugin i can include the logoutput of the test job? Can you show me an example (screenshot) of this,please? Am Montag, 12. November 2012 10:16:57 UTC+1 schrieb AdvanTiSS: > > We have almost s

Re: Build flow parallel execution issue

2012-11-12 Thread Reuben Gow
Any chance of getting a build with this fix in? I will happily test it for you. On Monday, 12 November 2012 10:26:51 UTC, Nicolas De loof wrote: > > there's a permission issue with parallel() I have to fix and may explain > this issue, not sure yet. > I don't have any other assumption what coul

Re: How to get the result of the triggered job in one email

2012-11-12 Thread AdvanTiSS
"So that means with this plugin i can include the logoutput of the test job?" Yes, you can, using pre-send groovy script obvously. https://wiki.jenkins-ci.org/display/JENKINS/Promoted+Builds+Plugin On Monday, November 12, 2012 12:41:40 PM UTC+2, Sven Finsterwalder wrote: > > Promotion can incl

Re: Build flow parallel execution issue

2012-11-12 Thread nicolas de loof
It's a question of spare time, so can't tell ... 2012/11/12 Reuben Gow > Any chance of getting a build with this fix in? I will happily test it for > you. > > > On Monday, 12 November 2012 10:26:51 UTC, Nicolas De loof wrote: > >> there's a permission issue with parallel() I have to fix and may

Scm of type: org.jenkinsci.plugins.multiplescms.MultiSCM is not supported

2012-11-12 Thread Martin Lichtin
Hi I'm running into the following problem and report it as requested: [RELEASE] Release build triggered ERROR: Processing failed due to a bug in the code. Please report this to jenkinsci-us...@googlegroups.comjava.lang.UnsupportedOperationException

Jenkins eats CPU when no jobs are running

2012-11-12 Thread Tomek Kaczanowski
Hello All, Jenkins 1.488 installed on Ubuntu server 12.10 There are no jobs running now but top shows Jenkins eating up 300% of CPU (we got 4 cores on our CI server). Could anyone explaining what is going on? Are there any internal Jenkins activities apart from jobs running which could result

Parameterized Perforce builds.

2012-11-12 Thread RolfB
I wish to have a parameterized Jenkins build which builds projects from a Perforce database based on a parameterized location within the Perforce database. Can anyone advise how to achieve this with the Jenkins Perforce plug-in? To this end I attempted setting up a Matrix build with the "Wor

Can anoyone help determine the cause of a Jenkins crash.

2012-11-12 Thread MDKF
Hi All, My Jenkins server died last night. I found the following text in the error log. Can anyone help me decipher what happened? Ive had these out of memory exceptions before. Nov 11, 2012 12:39:50 AM winstone.Logger logInternal SEVERE: Error while serving http://nwd2hscjnks/job/VectorGenera

Re: Copy/Replicate jobs in Hudson - How - Quick question

2012-11-12 Thread Z W
Hi Mark Thanks for responding. I'll try it out. On Thu, Nov 8, 2012 at 11:06 AM, Mark Waite wrote: > You could pass the job definition file from the original server to the > Jenkins command line interface "create-job" command and let it create the > job for you. > > Refer to http://jenkins.361

Set Slave ToolInstallation path with groovy cli script

2012-11-12 Thread Matt Gollob
Hello everyone, I originally posted this on the jenkinsci-dev list, but am posting here in hopes that a broader audience might yield more help. I'm looking for help with writing a groovy script for use with jenkins-

Shell script to indicate failed status to Hudson - quick question

2012-11-12 Thread Z W
Hi All We have a simple shell script that contains deployment call to deploy ear file to an application server. However, when deployment fails, errors are spewing out to the Hudson console but script continues to run to completion and indicate a pass status on Hudson. Could experts here show us w

Re: Shell script to indicate failed status to Hudson - quick question

2012-11-12 Thread Slide
If the shell script returns 0, it is determined to be a success, return anything other than 0 from the shell script to have the step considered a failure. slide On Mon, Nov 12, 2012 at 11:00 AM, Z W wrote: > Hi All > > We have a simple shell script that contains deployment call to deploy > ear

Re: Parameterized Perforce builds.

2012-11-12 Thread mark_kendzior
Rolf, I am doing something very similar to what you are trying to do. However it looks like you are running on Unix and I am running on Windows. This is what my setting are: Workspace: SCM_branch-${branch} Let Jenkins manage workspace is checked. Let Jenkins manage workspace view is checked. Clie

RE: Shell script to indicate failed status to Hudson - quick question

2012-11-12 Thread William Soula
Also add set -e at the top of your script to make it error at the first error and not continue till the end then fail the build From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Slide Sent: Monday, November 12, 2012 12:01 PM To: jenkinsci-users@googleg

Re: Making sure jobs run in sequence

2012-11-12 Thread Benjamin Lau
Thanks for all the replies! cjo's technique worked the best of the bunch so I went with that. Will have to play around with throttle-concurrency more though... that might be useful for another project I'm working on. Ben On Sun, Nov 11, 2012 at 10:59 AM, AdvanTiSS wrote: > You can use paramete

Problems with "Authorization" configuration . . .

2012-11-12 Thread Merrow, Frank
We have a number of Jenkins here and I've seen this issue repeatedly . . . I have seen this issue BOTH with "Logged-in users can do anything" and I have also seen it with "Project-based Matrix Authorization Strategy" where "Anonymous" has Overall/Read, Job/Read and View/Read. The issue is that

Re: Can anoyone help determine the cause of a Jenkins crash.

2012-11-12 Thread Harpreet singh Wadhwa
Looks like Memory issue "*OutOfMemoryError: Java heap space*" Try increasing in JAVA_OPTS Thanks On Mon, Nov 12, 2012 at 9:06 PM, MDKF wrote: > Hi All, > My Jenkins server died last night. I found the following text in the > error log. Can anyone help me decipher what happened? Ive had these o

Re: Parameterized Perforce builds.

2012-11-12 Thread Rob Petti
This should already be working. What version of the plugin are you running? You may need to update to the latest. On Monday, 12 November 2012 07:43:10 UTC-7, RolfB wrote: > > I wish to have a parameterized Jenkins build which builds projects from a > Perforce database based on a parameterized lo

Re: Parameterized Perforce builds.

2012-11-12 Thread Rob Petti
Actually wait, you need to use ${ProjectBranchName} in the view field, not the client name field, just as Mark suggested. On Monday, 12 November 2012 20:05:13 UTC-7, Rob Petti wrote: > > This should already be working. What version of the plugin are you > running? You may need to update to the l