Re: How to pass Java option to IBM SDK 6 in job - quick question

2014-02-03 Thread mpc8250
Hi Richard, thanks for responding. This used to work with Oracle JDK and nothing has changed to the build.xml. So we're not sure why it didn't work for IBM SDK. Also, do you know how we could directly put the java options box in a job configuration ? Is it -Xlint as an e.g. or -J-Xlint ? On Su

"Run Parameter" using Project from other Jenkins instance

2014-02-03 Thread Marius
Hi During a CD task i try to enable the users to select a specific buildnr of a project using the "Parameterized Build", "Run Parameter" option. Works great when all the project runs on the same Jenkins instance,, but i some of my cases the jobs runs on different servers/instances of Jenkins..

Re: Java Version 7, Update 45 warning every time I try starting the slave

2014-02-03 Thread Mark Waite
Another work around is to start the slave using a local copy of slave.jar, rather than using JNLP. A local copy of slave.jar works on JDK7u51 as well and does not require any changes to the Java permission settings. Mark Waite On Mon, Feb 3, 2014 at 12:12 AM, Srinivas Kona wrote: > One workaro

Re: Jenkins User Conference 2014

2014-02-03 Thread Tom Moore
I vote for Atlanta as well. On Friday, January 31, 2014 1:20:23 PM UTC-5, arthur...@homedepot.com wrote: > > I vote for Atlanta > > On Jan 30, 2014, at 7:46 PM, "Alyssa Tong" > > wrote: > > Hi All, > > Last year, many said they couldn't attend the Jenkins User Conference in > Palo Alto d

Re: enough entropy for jarsigning?

2014-02-03 Thread Shane Turner
On 01/02/2014 2:38 PM, Russ Tremain wrote: enough entropy for jarsigning? Hi, I ran into a very weird problem the other day that I thought I would share with the list. We recently switched our maven builds to Fedora linux running on a really great VMWARE cluster with very fast SSD-based stor

Re: How to attach pdf as an attachemnt in email-ext plugin

2014-02-03 Thread Anand Raja.K
Any one have updates on this?? On Wednesday, 22 January 2014 16:11:05 UTC+5:30, Anand Raja.K wrote: > > Hi, > > I have tried various thing to attach pdf as attachment in email-ext but > unable to do so.. > > > Tried the below scenarios > > in Attachments section > ${FILE, path="/ .pdf"} > > N

Integration test on a multi platform environment

2014-02-03 Thread Alon Segal
Hi, I'm running Jenkins on a machine that has both Oracle an Mssql installed on. I am running a batch file as a post-build step, which triggers the integration test. This batch file is testing only the Mssql. Now, I want to run another batch file simultaneously which is testing the oracle, and be

Re: Integration test on a multi platform environment

2014-02-03 Thread Vivekanand S V
A multi configuration ( https://wiki.jenkins-ci.org/display/JENKINS/Building+a+matrix+project ) job, may be ? On Mon, Feb 3, 2014 at 8:00 PM, Alon Segal wrote: > Hi, > I'm running Jenkins on a machine that has both Oracle an Mssql installed > on. > I am running a batch file as a post-build step

Re: How to attach pdf as an attachemnt in email-ext plugin

2014-02-03 Thread Slide
Can you provide more information like the config.xml for the job or something like that? It's hard to debug without further information. Also, please try turning on debug mode in the global config and post the build log. On Mon, Feb 3, 2014 at 7:19 AM, Anand Raja.K wrote: > Any one have updates

Re: Integration test on a multi platform environment

2014-02-03 Thread Alon Segal
I looked into that option. The thing is that the build is on a single platform, only the integration test (post-build step) is multi-platform. Maybe I'm missing something here? On Monday, February 3, 2014 4:30:11 PM UTC+2, Alon Segal wrote: > > Hi, > I'm running Jenkins on a machine that has bo

Re: Integration test on a multi platform environment

2014-02-03 Thread Eric Pyle
Would it work to put the integration tests into separate jobs, and have the build job kick off the two test jobs? If you need to track the test jobs from the build job, there are various ways to do that, such as using promoted builds. Eric On 2/3/2014 10:01 AM, Alon Segal wrote: I looked int

Re: Integration test on a multi platform environment

2014-02-03 Thread Alon Segal
That seems like a good direction. I will look into that. Thanks Eric! On Monday, February 3, 2014 5:21:47 PM UTC+2, Eric Pyle wrote: > > Would it work to put the integration tests into separate jobs, and have > the build job kick off the two test jobs? If you need to track the test > jobs from

Re: How to pass java compiler option on slave ?

2014-02-03 Thread JonathanRRogers
On Monday, February 3, 2014 12:24:21 AM UTC-5, mpc8250 wrote: > > Hi All > > How do we pass additional javac option to a slave running running a job > using Ant ? > The node configuration has a "JVM Options" field which does control the options use the run the remote JVM. I use "Execute shell"

ClearCase Dynamic View Setup

2014-02-03 Thread Silver$$
I'm new to Jenkins and trying to setup Jenkins to use Base ClearCase with dynamic views. I have the following configuration: Jenkins -> 1.533 ClearCase Plugin -> 1.4 Linux -> 5.7 ClearCase -> 7.0.1.3 Configuration: Advanced Project Options: - Use custom workspace -> selected - Directory

Re: Java Version 7, Update 45 warning every time I try starting the slave

2014-02-03 Thread alex ouzounis
This is what we do. We have a script that launches the slave which fetches the slave.jar from the master and uses that. example: #!/bin/bash rm slave.jar wget $JENKINS_MASTER_URL/jnlpJars/slave.jar source ~/.bash_profile java -jar slave.jar Alex On Monday, February 3, 2014 12:46:35 PM UT

How to set Jenkins and Hudson system property on command line using with Tomcat ?

2014-02-03 Thread mpc8250
Hi All We like to set a system property of Jenkins and Hudson using command line. We deploy Jenkins and Hudson with Tomcat. Sincerely -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails fro

Re: hudson.model.WorkspaceCleanupThread.disabled=true ? - quick question

2014-02-03 Thread mpc8250
Hi Dan We took your suggestion and in hopes of getting more direction from your kind advice. We checked to make sure that the job isn't configured to wipe out workspace. We then stop/start Jenkins/Hudson with hudson.model.WorkspaceCleanupThread.disabled=true. when system is up, On System propert

RE: ClearCase Dynamic View Setup

2014-02-03 Thread Ng, Jeff
To execute a command in the context of the dynamic view, you must use: /opt/rational/clearcase/bin/cleartool setview –exec ‘your-commands-here’ ${CLEARCASE_VIEWTAG} -Jeff Ng From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Silver$$ Sent: Monday, Feb

Re: ClearCase Dynamic View Setup

2014-02-03 Thread Silver$$
That works, thanks Jeff!!! On Monday, February 3, 2014 12:19:01 PM UTC-7, Ng, Jeff wrote: > To execute a command in the context of the dynamic view, you must use: > > > > /opt/rational/clearcase/bin/cleartool setview –exec ‘your-commands-here’ > ${CLEARCASE_VIEWTAG} > > > > -Jeff Ng > >

Slow Email Send from Jenkins

2014-02-03 Thread Brian Lee
Using the Mailer plugin in Jenkins (on Windows 7) to send a test email from the Configure screen gets the spinning graphic for a full 95 seconds. Then the email is sent successfully. I can hit the same smtp sever from the command prompt outside Jenkins and send nearly instantly. Same command in

Re: Slow Email Send from Jenkins

2014-02-03 Thread Slide
Can you enable debug mode for JavaMail? You can enable it using a command line property -Dmail.debug=true This should dump some additional information to stdout/stderr that may give some clues. slide On Mon, Feb 3, 2014 at 1:50 PM, Brian Lee wrote: > Using the Mailer plugin in Jenkins (on Wi

Re: Slow Email Send from Jenkins

2014-02-03 Thread Brian Lee
Thank you it does give some clues. It's slow at the point of connecting AND disconnecting: . DEBUG SMTP: trying to connect to host "mail..com", port 25, isSSL false // long pause at this line . 221 Closing connection. Good bye.

Re: Slow Email Send from Jenkins

2014-02-03 Thread Slide
Perhaps it has something to do with IPv6 vs. IPv4? I'm just guessing here, but I've seen something like that in the past. On Mon, Feb 3, 2014 at 2:44 PM, Brian Lee wrote: > Thank you it does give some clues. It's slow at the point of connecting > AND disconnecting: > > . > DEBUG SMTP: tryin

Re: Slow Email Send from Jenkins

2014-02-03 Thread Marc MacIntyre
Is jenkins providing the same "HELO" or "EHLO" hostname as you're using on the command line? This could be an issue with greylisting because of a hostname mismatch or DNS lookup issues. It would be interesting to re-run your cli test using the same envelope data and see if you get the same slowdo

Re: Slow Email Send from Jenkins

2014-02-03 Thread Slide
The Mailer plugin, just uses JavaMail, but I agree, it could be something like you mention. On Mon, Feb 3, 2014 at 3:28 PM, Marc MacIntyre wrote: > Is jenkins providing the same "HELO" or "EHLO" hostname as you're using on > the command line? This could be an issue with greylisting because of a

Re: How to attach pdf as an attachemnt in email-ext plugin

2014-02-03 Thread Anand Raja.K
Please find the attached log and config.xml file for your reference. On Wednesday, 22 January 2014 16:11:05 UTC+5:30, Anand Raja.K wrote: > > Hi, > > I have tried various thing to attach pdf as attachment in email-ext but > unable to do so.. > > > Tried the below scenarios > > in Attachments s