Re: email notification recipients list not saved.

2014-01-15 Thread rop
I am experiencing the same problem.
When I go into a Jenkins-job, click Configure, then Save the job, the 
email-recipients field goes empty.

We have 2 different Linux-servers with exactly the same jenkins-version: 
1.532.1

HOWEVER: this error happens only on 1 of the servers, while the other works 
correct.

So, apparently, it is not a general problem with the war-version, but 
happens under some specific circumstances only.

Anyone here familiar with the Jenkins source-code,
could you help point me to the code that executes when the Save-button is 
clicked?

Then I can look it over and try figure out what the issue might be...



Den fredagen den 3:e januari 2014 kl. 17:41:53 UTC+1 skrev Alessandro 
Ferrucci:
>
>
> Hello,
> I'm running Jenkins 1.544 in standalone mode.  I have a maven2/3 job 
> configured and want to set email notifications under job configuration -> 
> Build Settings ->Email Notification.
>
> If I attempt at setting an email address in the recipient list and 
> clicking Apply, then Save.  The email recipient list isn't saved.  If I go 
> back to configuration screen, the Email Notification checkbox is still 
> checked, but the recipient list is empty.
>
> Jenkins doesn't log any errors/warnings in the log.
>
> If I open the job's config.xml, I can see that the email settings are 
> correct for the checkboxes I have checked, but it has no recipient list XML 
> element.
>
> The following is the Mailer snippet I see in the job's config.xml:
>
>   
> 
>   true
>   false
>   true
> 
>   
>
>
> Does anyone have any hints/suggestions as to what I can try in order to 
> try to figure out what the issue is?
>
> Thanks!
> Alessandro Ferrucci
>

-- 
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 email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Selenium/Firefox under Jenkins finds wrong libstdc++ version

2013-11-11 Thread rop
Thanks for your input, Jonathan! 
It helped put me on the track to finally solve it.
Yes, turned out there was a local "hack" that polluted the environment...



On Wednesday, November 6, 2013 10:28:00 PM UTC+1, JonathanRRogers wrote:
>
>
>
> On Tuesday, November 5, 2013 12:03:46 PM UTC-5, rop wrote:
>>
>>
>> We are trying to make a maven-project with Selenium-tests run 
>> **headless** in Jenkins on a Linux-box.
>> We installed the xvfb-plugin in Jenkins. 
>> But when Selenium tries to invoke Firefox we get this error:
>>
>>   XPCOMGlueLoad error for file /usr/lib64/xulrunner/libxpcom.so:
>>   /opt/svn_1.6/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found 
>> (required by /usr/lib64/xulrunner/libxul.so)
>>   Couldn't load XPCOM.
>>
>> Listing the environ-variables from Jenkins pre-build step shows this:
>>
>>   
>> LD_LIBRARY_PATH="/usr/java/jdk1.6.0_24/jre/lib/i386/server:/usr/java/jdk1.6.0_24/jre/lib/i386:/usr/java/jdk1.6.0_24/jre/../lib/i386::/opt/svn_1.6/lib/:/opt/svn_1.6/lib/"
>>
>> Tomcat is started with a blank LD_LIBRARY_PATH, so I guess that "svn_1.6" 
>> stuff is set by Jenkins, because we also use the subversion-plugin in 
>> Jenkins (?).
>>
>> But looks like that is causing problems for Firefox, since the correct 
>> library (presumably /usr/lib64/libstdc++.so.6.0.13 ) then gets ignored... 
>> (do you agree?)
>>
>> Anyone has an idea how to get around this?
>>
>>
>> It does seem odd to me that Jenkins would be setting LD_LIBRARY_PATH for 
> its children to inherit. I've had no trouble running WebDriver tests from 
> Python. As a workaround, you should be able to fix the environment with the 
> EnvInject plugin:
> https://wiki.jenkins-ci.org/display/JENKINS/EnvInject+Plugin>
>

-- 
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 email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Selenium/Firefox under Jenkins finds wrong libstdc++ version

2013-11-05 Thread rop

We are trying to make a maven-project with Selenium-tests run **headless** 
in Jenkins on a Linux-box.
We installed the xvfb-plugin in Jenkins. 
But when Selenium tries to invoke Firefox we get this error:

  XPCOMGlueLoad error for file /usr/lib64/xulrunner/libxpcom.so:
  /opt/svn_1.6/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found 
(required by /usr/lib64/xulrunner/libxul.so)
  Couldn't load XPCOM.

Listing the environ-variables from Jenkins pre-build step shows this:

  
LD_LIBRARY_PATH="/usr/java/jdk1.6.0_24/jre/lib/i386/server:/usr/java/jdk1.6.0_24/jre/lib/i386:/usr/java/jdk1.6.0_24/jre/../lib/i386::/opt/svn_1.6/lib/:/opt/svn_1.6/lib/"

Tomcat is started with a blank LD_LIBRARY_PATH, so I guess that "svn_1.6" 
stuff is set by Jenkins, because we also use the subversion-plugin in 
Jenkins (?).

But looks like that is causing problems for Firefox, since the correct 
library (presumably /usr/lib64/libstdc++.so.6.0.13 ) then gets ignored... 
(do you agree?)

Anyone has an idea how to get around this?


-- 
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 email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.