Re: Problems with location of build workspace - not unique to each project

2012-03-12 Thread Øyvind Harboe
On Mar 11, 10:35 pm, Sami Tikka wrote: > Jenkins does not normally vomit null pointer exceptions when it is feeling > fine. I suppose. I just don't know if it is relevant or what this NPE means. > Which JVM are you using to run Jenkins? How did you install Jenkins? I'm using RedHat and install

Re: Problems with location of build workspace - not unique to each project

2012-03-12 Thread Øyvind Harboe
On Mar 11, 10:35 pm, Sami Tikka wrote: > Jenkins does not normally vomit null pointer exceptions when it is feeling > fine. I think the problem is that Jenkins misbehaves when /var/lib/jenkins is symbolic link. The root partition I'm using has only 20GBytes and the /export/dev02 that I want to

"Web of Trust" (WOT) Plugin for Firefox breaks the configuration pages of jenkins

2012-03-12 Thread wohauser
Hello, just for your info. I've imagined, that the WOT Plugin for Firefox breaks the loading of the configuration pages of matrix projects. The "Loading data .." Overlay don't disappear and the data on the page are left incompete. If I disable the WOT Plugin, all pages working fine. Regards Wol

Re: Job dependencies

2012-03-12 Thread Grégory Boissinot
Maybe you should avoid using Jenkins to implement these kind of dependencies. Look at your build tool or any tool to implement your CI process and your components dependencies. In Java world, you can look at Ivy (http://ant.apache.org/ivy/). - Gregory On Wed, Feb 15, 2012 at 9:56 AM, Alper wrot

E-mail notification if total test # decreases or total tests passed decreases

2012-03-12 Thread Dirk Kuypers
Hi, cool, you are right! I didn't notice that there is now an improvement and regression trigger in the configuration section of the email extension plugin. Thanks for integrating! Best regards Dirk 2012/3/10 Slide : > That ticket should be closed, the patch was applied to email-ext > > > On Sat

About an influence range of Jenkins Security Advisory 2012-03-05.

2012-03-12 Thread Masato Izumiya
Hello everyone. My name is Masato Izumiya. We are using Jenkins ver. 1.409.1 now. I knew Jenkins Security Advisory 2012-03-05. If it's possible ,please teach me what kind of pages has the risk of XSS in Jenkins. Of course,I understand that this request has unreasonableness. But, it is difficu

Re: Email-ext double configuration

2012-03-12 Thread Jeff MAURY
Hello, please find an extract from the job log: [INFO] Deployment done in 58 s Email was triggered for: Success Email was triggered for: Fixed Trigger Success was overridden by another trigger and will not send an email. Sending email for trigger: Fixed Sending email to: $DEFAULT_RECIPIENTS jeff.

Not stable

2012-03-12 Thread Suri
Hi Our Jenkins is not stable. We are frequently getting some errors in logs. I have upgraded with LTS and also i have upgraded all plug-in with latest version. Even though i am getting below mentioned errors. Can anyone please advise me, how should i do to make stable my Jenkins? Feb 23, 2012

Re: About an influence range of Jenkins Security Advisory 2012-03-05.

2012-03-12 Thread Jesse Farinacci
Greetings, On Mon, Mar 12, 2012 at 5:41 AM, Masato Izumiya wrote: > We are using Jenkins ver. 1.409.1 now. > > But, it is difficult for us to update Jenkins right now. > If only manage pages are at risk of XSS, we don't update Jenkins from > 1.409.1 to 1.454 immediately. If that is too much of a

Winstone to Tomcat

2012-03-12 Thread Suri
Hi Friends, We are using Jenkins version 1.424 version which has been installed in Redhat Linux server. We are running Jenkins service using Winstone. We are going to move our Jenkins service to Tomcat. How to move Jenkins service with all my existing configuration settings & jobs to Tomcat. Plea

Re: Bacis steps to write a plugin which depends on another

2012-03-12 Thread Chris S.
I have finished the work on the first plugin. Now I want to write a second plugin which extends the first (authorization) plugin. It means, that I want to extend the possible configuration settings and so on. It would be possible to create a new plugin copying the content from the old one, but I

Retrieve Nexus Url after build

2012-03-12 Thread Efavre
Hello, I have a Maven3 job which builds my artifact and deploys it to the release repo on Nexus. I would like to send an e-mail the the deployment team once the build is done and successful. I added the E-mail Extension Plugin, but I can't figure out how to retrieve the full Nexus url on which I d

RE: Retrieve Nexus Url after build

2012-03-12 Thread Nord, James
The nexus rest implementation is what you need (see the nexus user email list). You may be able to gets some information from the m2release plugin source but not so sure that would help in this case. /James > -Original Message- > From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-

Re: Retrieve Nexus Url after build

2012-03-12 Thread Arnaud Héritier
I don't remember how we are doing with the maven-deployment-linker-plugin but there is probably a solution do something similar to it to add these links in the email https://github.com/jenkinsci/maven-deployment-linker-plugin Arnaud On Mon, Mar 12, 2012 at 2:51 PM, Efavre wrote: > Hello, > > I

Re: Email-ext double configuration

2012-03-12 Thread Slide
Currently this is baked into the plugin, the fixed trigger "replaces" the success trigger. I think it might be useful to add a way to turn on/off the "replacing" for each trigger. Can you file an issue on this in JIRA ( https://issues.jenkins-ci.org)? Thanks, slide On Mon, Mar 12, 2012 at 3:49 A

RE: Retrieve Nexus Url after build

2012-03-12 Thread Nord, James
Ah... Assuming you only have one release repo then its possible without asking nexus. You can get the MavenModule from Jenkins - then get its group artifact and id. Then the URL follows the standard maven pattern which is something like - http://repo/repo_path/group_id_replace_dot_with_slash/ar

Re: hg clone fails, hg pull succeeds

2012-03-12 Thread Ron
[SOLVED] Our slave instance was running as a Windows service under an anonymous account so it wasn't picking up any of our authentication information. Once the service was configured to run as our CI user account everything worked as expected. Side issue: Jenkins failed silently on a hg update

Re: Retrieve Nexus Url after build

2012-03-12 Thread Efavre
James, Arnaud, thank you for your quick answers. I'll study both solutions. Eric On 12 mar, 16:53, "Nord, James" wrote: > Ah... > > Assuming you only have one release repo then its possible without asking > nexus. > > You can get the MavenModule from Jenkins - then get its group artifact and id

Re: E-mail notification if total test # decreases or total tests passed decreases

2012-03-12 Thread sarchule
Nice idea, but, unfortunately, the regression trigger doesn't quite solve the original problem. In my case, I need the regression trigger to kick-in if the total number of passes decreases rather than the total number of failures increasing (since the failure count remained the same in my scena

Re: Winstone to Tomcat

2012-03-12 Thread Sami Tikka
Did you read https://wiki.jenkins-ci.org/display/JENKINS/Tomcat ? -- Sami Suri kirjoitti 12.3.2012 kello 15.01: > Hi Friends, > > We are using Jenkins version 1.424 version which has been installed in > Redhat Linux server. > We are running Jenkins service using Winstone. > > We are going to

Re: Not stable

2012-03-12 Thread Sami Tikka
Which JVM do you use? How did you install Jenkins? -- Sami Suri kirjoitti 12.3.2012 kello 14.14: > Hi > > Our Jenkins is not stable. We are frequently getting some errors in > logs. > I have upgraded with LTS and also i have upgraded all plug-in with > latest version. > > Even though i am get

Re: Problems with location of build workspace - not unique to each project

2012-03-12 Thread Sami Tikka
I think I have seen a Jenkins installation where JENKINS_HOME was a symlink. But if you want to be sure, edit some config file which sets the value for JENKINS_HOME. I am not familiar with the Jenkins rpm package but if it is built according to standard, the config file should be /etc/sysconfig/

Re: E-mail notification if total test # decreases or total tests passed decreases

2012-03-12 Thread Slide
Please do. slide On Mon, Mar 12, 2012 at 10:05 AM, sarchule wrote: > Nice idea, but, unfortunately, the regression trigger doesn't quite solve > the original problem. In my case, I need the regression trigger to kick-in > if the total number of passes decreases rather than the total number of >

Re: Problems with location of build workspace - not unique to each project

2012-03-12 Thread Sami Tikka
2012/3/12 Øyvind Harboe : > On Mar 11, 10:35 pm, Sami Tikka wrote: >> Jenkins does not normally vomit null pointer exceptions when it is feeling >> fine. > > I suppose. I just don't know if it is relevant or what this NPE means. > >> Which JVM are you using to run Jenkins? How did you install Jen

Unstable builds due to "SEVERE: I/O error in channel Channel to Maven"

2012-03-12 Thread Miguel Almeida
Hi, I have a multi-module project where I'm running the Maven goal "clean surefire-report:report". While the tests pass in our local machines, we're randomly having failures in one of the modules in Jenkins. The console shows: mavenExecutionResult exceptions not empty message : Failed to execute

Help request: Changelogs for multiple SCM repositories

2012-03-12 Thread Todd Greer
My build process needs to pull and update multiple Mercurial repositories that are nested in one top-level repository. This works fine, but I don't know how to generate a build report/email that lists all changes in all repositories (like what you see when you have just one repository). I've tri