Trailing WInstone error message on job configure page

2012-03-27 Thread Didier Durand
Hello, Since 1.456 (also in 1.457), I get the following error message from winstone in the Job configuration page for each job after current configuration is displayed Status Code: nullException: Stacktrace: (none) -- *Generated by Winstone Servlet Engine v0.9.1

Re: Import people from file

2012-03-27 Thread Breno C. Costa
Thanks.. I found the "user database" in hudson (".hudson/users") On 27 mar, 12:49, domi wrote: > a simple groovy script should do... > > On 27.03.2012, at 16:04, Breno C. Costa wrote: > > > > > > > > > Hi everyone, > > > I would like to import people list (name and email) from a file, > > becaus

Is it possible to distinguish between a job triggered by an SCM trigger/periodic trigger/etc... based on a system property set by Jenkins?

2012-03-27 Thread Omair-Inam Abdul-Matin
Hi all, Is it possible to distinguish between a job triggered by an SCM trigger/periodic trigger/etc... based on a system property set by Jenkins? The list of properties mentioned here: http://wiki.hudson-ci.org/display/HUDSON/Building+a+software+project#Buildingasoftwareproject-HudsonSetEnvironm

Re: password masking plugin too aggressive

2012-03-27 Thread Maven User
Yeah, it's actually not breaking the dl as expected but the fact that it's obfuscating something like foo-8.0-SNAPSHOT is nuts... On Tuesday, March 27, 2012 4:02:45 PM UTC-4, gboissinot wrote: > > Mask passwords plugin tries to mask passwords values line by line of the > log file. > If a line co

Re: email-ext - request for another jelly script example

2012-03-27 Thread Slide
You can use the PROJECT_DEFAULT_CONTENT in the triggers for them to use the same content as you specified in the main area for the content. On Tue, Mar 27, 2012 at 1:48 PM, dpreilan wrote: > Create your groovy script and place in under your $JENKINS_HOME/email- > templates. Create the email-temp

Want the status of all forked jobs, failing using Join Plugin

2012-03-27 Thread kenstir
My goal is to launch an "all-platforms" job with parameters (SVN rev and email addresses) that spawns multiple jobs. When all jobs are done I would prefer a single email with the SVN rev and email addresses and success status of all jobs. Am I dreaming? So far I tried the Join Plugin and I am

Re: email-ext - request for another jelly script example

2012-03-27 Thread dpreilan
Create your groovy script and place in under your $JENKINS_HOME/email- templates. Create the email-templates directory if needed. Say you call it foo.template. In your jenkins job(s), configure your "Editable Email Notification" Content area, like: ${SCRIPT,template="foo.template"} Make sure you

Re: EnvInject: injecting environment variables from URL

2012-03-27 Thread Grégory Boissinot
Sorry, it was a regression. Fixed in shared-objects plugin 0.21 On Mon, Mar 26, 2012 at 10:17 PM, John Vacz < mailing.list.collect...@googlemail.com> wrote: > ** > Sorry, forgot to say, that the redirection on save button works. The > errors are only present in log file, no error messages on web

Re: password masking plugin too aggressive

2012-03-27 Thread Grégory Boissinot
Mask passwords plugin tries to mask passwords values line by line of the log file. If a line contains a string value matching a mask password value, the value is replaced by ''. Therefore, I think you have an another problem. Mask-passwords plugin provides here only a display issue. On Tue, Ma

password masking plugin too aggressive

2012-03-27 Thread Maven User
Hi all - I'm using the password masking plugin but when I use the maven release plugin, I can see that it's masking out other parameters (that are NOT checked in the main jenkins config section). My builds end up failing because maven is trying to retrieve a GAV of something like foo:bar:

Re: Questions about promoted builds plugin, PROMOTED_NUMBER, and deploy to maven repo

2012-03-27 Thread Carter Sanders
I now see this is probably related to JENKINS-11766

Re: After 1.451 -> 1.456 upgrade, jobs are not dequeueing

2012-03-27 Thread Cees Bos
We face a similar issue with 1.456. I reported ticket https://issues.jenkins-ci.org/browse/JENKINS-13245 for this. Regards, Cees On Tue, Mar 27, 2012 at 5:22 PM, Vincent Latombe wrote: > Hello, > > I believe this is caused by > https://issues.jenkins-ci.org/browse/JENKINS-12994 > > Vincent > >

Re: Can you recommend a jenkins-friendly C++ code coverage tool?

2012-03-27 Thread Mark Waite
I configured gcc with lcov output to HTML and used a plugin that let me link to the lcov HTML output.  It was fast and easy to configure and has worked well enough for my needs. Mark Waite > > From: Chris Withers >To: jenkinsci-users@googlegroups.com >Sent: T

Re: artifactory plugin : simple zip upload

2012-03-27 Thread Yoav Landman
The latest version of the Jenkins Artifactory plugin (2.0.6) supports generic deployment from freestyle builds, which is probably what you are after. It allows you to pick up any custom files for deployment and map them to a custom deploy path. See "Configuring Generic (Freestyle) Builds" at https:

Re: View list of builds organised by branch?

2012-03-27 Thread seanh
On Tue, Mar 27, 2012 at 05:16:11PM +0200, Vincent Latombe wrote: > Hello, > > that's a good idea, I guess it would require an alternative view of the > build history that would 'group' the builds by branch. Yes, exactly. And sort the groups by time of latest build, so that recently built branches

Re: Switch JDK between build steps

2012-03-27 Thread domi
you could use this plugin: https://wiki.jenkins-ci.org/display/JENKINS/Tool+Environment+Plugin to reuse the JDK definitions (JAVA_HOME) for your scripts - this way you at least don't have to hard code JAVA_HOME… /imod On 27.03.2012, at 16:25, Andreas wrote: > Hi, > > my current favorite soluti

Re: Import people from file

2012-03-27 Thread domi
a simple groovy script should do... On 27.03.2012, at 16:04, Breno C. Costa wrote: > Hi everyone, > > I would like to import people list (name and email) from a file, > because I have many people in my project's svn, and I need to send > post build email to him. > > Best regards, > Breno C. Cos

Re: After 1.451 -> 1.456 upgrade, jobs are not dequeueing

2012-03-27 Thread Vincent Latombe
Hello, I believe this is caused by https://issues.jenkins-ci.org/browse/JENKINS-12994 Vincent 2012/3/27 kenstir > I see this issue on jenkins 1.457 as well, but only when another build > polling SVN is in the "quiet period". That is, my manual build is queued > behind a build in the quiet pe

Re: After 1.451 -> 1.456 upgrade, jobs are not dequeueing

2012-03-27 Thread kenstir
I see this issue on jenkins 1.457 as well, but only when another build polling SVN is in the "quiet period". That is, my manual build is queued behind a build in the quiet period, and mine does not dequeue.

Re: View list of builds organised by branch?

2012-03-27 Thread Vincent Latombe
Hello, that's a good idea, I guess it would require an alternative view of the build history that would 'group' the builds by branch. This is SCM-specific, as the branch information is part of Git Data (and not all SCM support building several branches on the same job). I guess the build history

View list of builds organised by branch?

2012-03-27 Thread seanh
Hey, I've setup a Jenkins job for our Python app with the Git and GitHub plugins. Whenever someone pushes a new commit to any branch of our GitHub project, Jenkins checks out that commit and runs a script which runs our unit tests using nose, and if you view the build in Jenkins you can see a nice

After 1.451 -> 1.456 upgrade, jobs are not dequeueing

2012-03-27 Thread Paul Weiss
After upgrading I have several jobs in queues that are just not dequeuing. If they are tied jobs the tooltip says "Waiting for next executor on ". If they are untied jobs the tooltip says "Waiting for next executor". I have executors available, both for the tied and untied jobs, but they are not

Re: Switch JDK between build steps

2012-03-27 Thread Andreas
Hi, my current favorite solution is to define a special ant and maven version as Jenkins tools. Lets say ant-sonar and maven-sonar. Once installed I add to the ant / mvn script of these tool installations: ## Special code to get a fix 1.6 jdk to run sonar 2.14 JAVA_HOME=/usr/share/jdk1.6.0_20 e

Re: Import people from file

2012-03-27 Thread Breno C. Costa
Any suggestion about this? On 27 mar, 11:04, "Breno C. Costa" wrote: > Hi everyone, > > I would like to import people list (name and email) from a file, > because I have many people in my project's svn, and I need to send > post build email to him. > > Best regards, > Breno C. Costa

Import people from file

2012-03-27 Thread Breno C. Costa
Hi everyone, I would like to import people list (name and email) from a file, because I have many people in my project's svn, and I need to send post build email to him. Best regards, Breno C. Costa

Re: git repository clone once

2012-03-27 Thread Ido Ran
I didn't try to --reference option, I will. I also understand that the repository will be clone to each job, in my case it's matrix job so it's even more clones. I hope someone will find a way. I'll post here if I'll manage to find a solution. Ido On Tue, Mar 27, 2012 at 12:45 PM, Albert Callari

Re: git repository clone once

2012-03-27 Thread Albert Callarisa
I asked something similar recently but the reply didn't help me. Did you try with the --reference option in git? I tried but didn't help I'm still trying to figure out how to make it. I'm fine with a clone in each computer, but once is cloned I would like to just pull from the same place, but the w

Re: Jobs triggered only by changes in certain subdirectories?

2012-03-27 Thread B.Latinville
Hi, Maybe your git plugin is outdated. Include regions were added in November : https://github.com/jenkinsci/git-plugin/pull/49 Bertrand. On Mar 23, 8:47 am, Dave Ohlsson wrote: > Hi, > > I could not find any "Included Regions" field, but there is an > "Excluded Regions" field, and that shoul

git repository clone once

2012-03-27 Thread Ido Ran
Hi, We use Jenkins to build our applications which are stored in git repository. We have several different jobs for building different configuration and deployment of our applications. Currently each project pull it's own clone of the git repository from our central repository which takes about 7

Re: Can you recommend a jenkins-friendly C++ code coverage tool?

2012-03-27 Thread Jan Seidel
Hi Chris, we will soon go for Sonar http://www.sonarsource.org/features/ not sure if that fits your expectation. I'm even not sure if it fits ours XD But it seems to be very powerful and versatile not to mention that the sonar server, that runs separately can be connected to jenkins via a jenkins

Re: Can you recommend a jenkins-friendly C++ code coverage tool?

2012-03-27 Thread Chris Withers
On 27/03/2012 08:48, Zoltan Gyarmati wrote: well, it depends on your compiler, We use GCC. but you might want to check out gcov, with the gcovr script and the Cobertura plugin. see for example here: http://www.semipol.de/archives/320 Cool, looks interesting, what others do people recommend

Re: Can you recommend a jenkins-friendly C++ code coverage tool?

2012-03-27 Thread Zoltan Gyarmati
Hi Chris, well, it depends on your compiler, but you might want to check out gcov, with the gcovr script and the Cobertura plugin. see for example here: http://www.semipol.de/archives/320 On 03/27/2012 09:40 AM, Chris Withers wrote: Hi All, Which C++ code coverage tool would you guys recomm

Can you recommend a jenkins-friendly C++ code coverage tool?

2012-03-27 Thread Chris Withers
Hi All, Which C++ code coverage tool would you guys recommend to get a good understanding of how much code is being covered by a Boost-based test of unit tests and which works well with Jenkins? Commercial tools are fine, provided they're good enough to justify their cost :-) cheers, Chri

Re: Switch JDK between build steps

2012-03-27 Thread Andreas
Hi, this sounds like a plan. I still need to convert the build steps into shell script steps but it should be possible to find all tools based on the environment variables. I would loose the install magic, since there is no way for Jenkins to know which JDK the job uses but at least I've a chan