Re: Try/Catch around Failing Plugin

2016-08-25 Thread wakelt
only if the exception is thrown on that thread the try/catch is executing on. 
If any of the instructions in the try block spawn/use another thread, 
exceptions thrown on that spawned thread will NOT be caught by your catch 
block. 

- Original Message -

From: treadston...@gmail.com 
To: "Jenkins Users"  
Sent: Thursday, August 25, 2016 5:13:06 PM 
Subject: Try/Catch around Failing Plugin 

Hi, 

I'm trying to work around this bug where XUnit XMLs parsing crashes on Windows 
10 nodes (https://issues.jenkins-ci.org/browse/JENKINS-34106) 

I thought perhaps Pipeline steps might be the way to go and wrote this: 

for ( x = 0 ; x < 5 ; x ++) { 
try { 
step ([ $class : 'XUnitPublisher' , testTimeMargin : '3000' , thresholdMode : 1 
, thresholds : [[ $class : 'FailedThreshold' , failureNewThreshold : '' , 
failureThreshold : '' , unstableNewThreshold : '' , unstableThreshold : '0' ], 
[ $class : 'SkippedThreshold' , failureNewThreshold : '' , failureThreshold : 
'' , unstableNewThreshold : '' , unstableThreshold : '' ]], tools : [[ $class : 
'GoogleTestType' , deleteOutputFiles : true , failIfNotNew : false , pattern : 
"_results/*/${config}/${arch}/tests/gtest*.xml" , skipNoTestFiles : true , 
stopProcessingIfError : true ]]]) 
break 
} catch ( any ) { // XUnit fails on Win10, try again! 
echo "XUnit crashed, trying again!" 
sleep ( 5 ) 
} 
} 

But this simply isn't working: 



... 



12:08:16 [xUnit] [INFO] - Starting to record. 
12:08:16 [xUnit] [INFO] - Processing GoogleTest-1.6 
12:08:16 [xUnit] [INFO] - [GoogleTest-1.6] - 11 test report file(s) were found 
with the pattern '_results/*/release/x64/tests/gtest*.xml' relative to 
'c:\jenkins\workspace\pipeline_component_2' for the testing framework 
'GoogleTest-1.6'. 
12:08:21 [xUnit] [ERROR] - The plugin hasn't been performed correctly: remote 
file operation failed: c:\jenkins\workspace\pipeline_component_2 at 
hudson.remoting.Channel@4ef7f3ea:HOSTNAME: java.io.StreamCorruptedException: 
invalid type code: 43 
[Pipeline] } 
[Pipeline] // node 
[Pipeline] End of Pipeline 
Finished: FAILURE 



Shouldn't try/catch intercept the exception? Does anyone have any other ideas 
about how I can force it to retry? 

Thanks in advance! 



-- 
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 . 
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/4503604d-af57-4cf6-b5cd-1274c93eb172%40googlegroups.com
 . 
For more options, visit https://groups.google.com/d/optout . 

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/846522085.7926676.1472160282126.JavaMail.zimbra%40comcast.net.
For more options, visit https://groups.google.com/d/optout.


Re: unable to access Jenkins in Firefox and Chrome after latest browser updates because of "weak ephemeral Diffie-Hellman public key"

2015-10-28 Thread wakelt
We ran into this with issue with a different server application that was using 
SSL/TLS. Chances are you need to update the server to 
stop advertising weak diffie-hellman ciphers. The last firefox/chrome browsers 
will see those ciphers and believe their is a client attack 
on the horizon. So, the browsers won't connect. If you're server is Tomcat, you 
need to update server.xml. 

- Original Message -

From: "Daniel Beck"  
To: jenkinsci-users@googlegroups.com 
Sent: Wednesday, October 28, 2015 12:24:55 PM 
Subject: Re: unable to access Jenkins in Firefox and Chrome after latest 
browser updates because of "weak ephemeral Diffie-Hellman public key" 

To clarify, you're using the embedded Jetty-Winstone to run Jenkins (i.e. java 
-jar jenkins.war), including SSL/TLS? 

On 28.10.2015, at 17:17, Roger Moore  wrote: 

> Thanks Brent. I had found similar discussions but not on that message list. 
> 
> After reading that though, and from the other things I’ve found, it seems the 
> correct fix is to change the setting on the Jenkins server because we already 
> are using 1024-bit certificates. 
> 
> I had found a page that discusses how to fix the issue on Jetty 
> implementations, but the specified file did not exist (or perhaps I couldn’t 
> find it) in Jenkins. 
> 
> My real question then is what do I modify in our Jenkins implementation to 
> get around this issue? Assuming that there is something to modify… 
> 
> From: jenkinsci-users@googlegroups.com 
> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Brent Atkinson 
> Sent: Tuesday, October 27, 2015 4:27 PM 
> To: jenkinsci-users@googlegroups.com 
> Subject: Re: unable to access Jenkins in Firefox and Chrome after latest 
> browser updates because of "weak ephemeral Diffie-Hellman public key" 
> 
> https://productforums.google.com/forum/#!topic/chrome/o3vZD-Mg2Ic 
> 
> On Tue, Oct 27, 2015 at 1:31 PM, Roger Moore  wrote: 
> Has anyone else seen a problem accessing Jenkins after Chrome was updated to 
> v45? Chrome reports: 
> 
> "This error can occur when connecting to a secure (HTTPS) server. It means 
> that the server is trying to set up a secure connection but, due to a 
> disastrous misconfiguration, the connection wouldn't be secure at all! 
> 
> In this case the server needs to be fixed. Google Chrome won't use insecure 
> connections in order to protect your privacy." 
> 
> A similar error occurs in Firefox v39.0, which reports: 
> 
> "An error occurred during a connection to 'servername:portnumber'. SSL 
> received a weak ephemeral Diffie-Hellman key in Server Key Exchange handshake 
> message. (Error code: ssl_error_weak_server_ephemeral_dh_key)." 
> 
> I can connect using IE and Safari though. 
> 
> The Jenkins logs do not provide messages at the time when the attempt to 
> connect is made. 
> 
> I tried looking at the Jenkins configuration and using Google searches, but 
> could not find where to change the setting in Jenkins to force Jenkins to use 
> the stronger key. 
> 
> Any suggestions would be appreciated. 
> 
> 
> 
> Roger Moore 
> 
> -- 
> 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. 
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/SN1PR08MB198183FA4F85C5148C4BB6220%40SN1PR08MB1981.namprd08.prod.outlook.com.
>  
> For more options, visit https://groups.google.com/d/optout. 
> 
> -- 
> 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. 
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/CALyHw0HLs%2BOi8_58-W6gAwfSK0k-%3DOgRi_M4bSngm4tOs319EA%40mail.gmail.com.
>  
> For more options, visit https://groups.google.com/d/optout. 
> 
> -- 
> 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. 
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/SN1PR08MB19819521575455091AD09AD5B6210%40SN1PR08MB1981.namprd08.prod.outlook.com.
>  
> For more options, visit https://groups.google.com/d/optout. 

-- 
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. 
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/C5C8527B-0103-4D90-BD3A-5E60BC15235D%40beckweb.net.
 
For more options, visit https://groups.google.com/d/optout. 

-- 
You received

Re: Upcoming Mastering continuous integration with Jenkins - 28-29th January

2015-01-20 Thread wakelt
page loaded for me 

- Original Message -

From: "Rob Mandeville"  
To: jenkinsci-users@googlegroups.com 
Cc: "Rob Mandeville"  
Sent: Tuesday, January 20, 2015 4:23:47 PM 
Subject: RE: Upcoming Mastering continuous integration with Jenkins - 28-29th 
January 



On the one hand, this is the sort of commercial-ish message we want to see on 
these boards, as opposed to the storm of recruiting spam we’ve been weathering 
lately. 



On the other hand, the page doesn’t load; it complains that it can’t connect to 
MySQL. Marián, you may want to have someone look into that if you want people 
to attend. 



--Rob 




From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Marián Knotek 
Sent: Tuesday, January 20, 2015 2:23 PM 
To: jenkinsci-users@googlegroups.com 
Subject: Upcoming Mastering continuous integration with Jenkins - 28-29th 
January 



http://www.forest-technologies.co.uk/events/mastering-continuous-integration-with-jenkins-jan
 


-- 
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 . 
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/125ef8d8-fd33-4952-b274-cc1c7ecf5a5d%40googlegroups.com
 . 
For more options, visit https://groups.google.com/d/optout . 



Click here to report this email as spam. 


This e-mail and the information, including any attachments it contains, are 
intended to be a confidential communication only to the person or entity to 
whom it is addressed and may contain information that is privileged. If the 
reader of this message is not the intended recipient, you are hereby notified 
that any dissemination, distribution or copying of this communication is 
strictly prohibited. If you have received this communication in error, please 
immediately notify the sender and destroy the original message. 

Thank you. 

Please consider the environment before printing this email. 


-- 
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 . 
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/0A40042D85E7C84DB443060EC44B3FD36D9AC37123%40dekaexchange07.deka.local
 . 
For more options, visit https://groups.google.com/d/optout . 

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/1216274308.6076340.1421789233033.JavaMail.zimbra%40comcast.net.
For more options, visit https://groups.google.com/d/optout.


Re: IOException: Premature EOF when downloading archive.zip with Ant

2014-12-16 Thread wakelt
Does the download fail if you run ANT outside of Jenkins ??? If so, I start my 
debug outside of Jenkins. 

- Original Message -

From: "Chris Suich"  
To: jenkinsci-users@googlegroups.com 
Sent: Tuesday, December 16, 2014 11:25:46 AM 
Subject: IOException: Premature EOF when downloading archive.zip with Ant 

Hi All, 

We are seeing an intermittent issue when downloading the all artifacts archive 
(archive.zip) from a job. We have some automation and smoke tests which is 
using Ant's 'get' task to download the file. The download will fail with this 
stacktrace from Ant: 

Caused by: java.io.IOException: Premature EOF 
at 
sun.net.www.http.ChunkedInputStream.readAheadBlocking(ChunkedInputStream.java:565)
 
at sun.net.www.http.ChunkedInputStream.readAhead(ChunkedInputStream.java:609) 
at sun.net.www.http.ChunkedInputStream.read(ChunkedInputStream.java:696) 
at java.io.FilterInputStream.read(FilterInputStream.java:133) 
at 
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(HttpURLConnection.java:3053)
 
at 
sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(HttpURLConnection.java:3047)
 
at org.apache.tools.ant.taskdefs.Get.doGet(Get.java:209) 
at org.apache.tools.ant.taskdefs.Get.execute(Get.java:78) 

We are seeing this issue on multiple clients and are yet to determine if the 
issue is server, infrastructure or client side. 

We tried creating a custom log with the following Loggers: 
hudson.model.FullDuplexHttpChannel 
hudson.util.ChunkedOutputStream 
hudson.model.DirectoryBrowserSupport 
hudson.model.DownloadService$Downloadable 
org.eclipse.jetty 

but haven't found anything interested except that DirectoryBrowserSupport will 
log when it is serving an individual file, but not an archive.zip. 

A couple other notes from out investigation: 
- We have only seen this issue on Linux (that isn't to say it couldn't happen, 
just that we only see it on Linux) 
- We have seen the issue occur at the same time (within 1/5 or 1/2 a second) of 
each other on multiple smoke machines trying to download at the same time (and 
it does happen to individual machines as well) 

Does anyone have any recommendations of Loggers we could use or other ways to 
rule Jenkins out as a suspect? 

Thanks, 
Chris 


-- 
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 . 
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAJADJY5Gt2HRHYQkDETfCjZTMtb3FjGs%2BtZSX3z%2B5zK6%3D%3DdM6g%40mail.gmail.com
 . 
For more options, visit https://groups.google.com/d/optout . 

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/1616746118.5147730.1418747322023.JavaMail.zimbra%40comcast.net.
For more options, visit https://groups.google.com/d/optout.


Re: a few Jenkins questions

2014-05-29 Thread wakelt
beyond the expected java int issues, I would think that when folks talk about 
build numbers, they don't talk in 
the thousands..perhaps its just me ? We are in the development stages at the 
moment and builds are happening 
quite often, thus the numbers can get pretty high. I'll have a different build 
set up when we're ready to Release. 

anyways, thanks to Matthew and Daniel for the support. 

- Original Message -

From: "Daniel Beck"  
To: jenkinsci-users@googlegroups.com 
Sent: Thursday, May 29, 2014 8:30:32 AM 
Subject: Re: a few Jenkins questions 


On 29.05.2014, at 13:37, wak...@comcast.net wrote: 

> would be a build number reset at some point ? 

Well, it's an int. After build number 2.147.483.647 it wraps around to 
-2.147.483.648 and Jenkins basically breaks, failing to show these builds on 
the UI. 

Not sure this is a relevant limitation though. 

-- 
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/d/optout. 

-- 
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/d/optout.


Re: a few Jenkins questions

2014-05-29 Thread wakelt
thanks for the quick reply. So, the build numbers just keep increasing forever 
?? I would think that there 
would be a build number reset at some point ? 

I will take a look given the info you provided below. 

-wk 

- Original Message -

From: "Matthew Webber"  
To: jenkinsci-users@googlegroups.com 
Sent: Thursday, May 29, 2014 3:48:35 AM 
Subject: RE: a few Jenkins questions 



Jenkins never wraps build numbers, so something has gone badly wrong. 



The number of the next build for each job is stored in file 
${JENKINS_HOME}/jobs//nextBuildNumber , with the actual build results 
in ${JENKINS_HOME}/jobs//builds/ . You might want to see if that 
directory was reverted somehow. Also take a look at the permissions. 



If fact, check that what ${JENKINS_HOME} your Jenkins is actually pointing to. 
Most likely something in your environment got messed up, and it is not a 
Jenkins issue per se. 






From: wak...@comcast.net [mailto:wak...@comcast.net] 
Sent: 28 May 2014 21:51 
To: jenkinsci-users@googlegroups.com 
Cc: wak...@comcast.net 
Subject: a few Jenkins questions 











I have been using Jenkins for a few months now. I've apparently run enough 
builds that the build number scheme 


used by Jenkins (ex. Project_JUnit #978) has now wrapped around to 
Project_Junit #20. These are not the exact 


numbers but you get the idea. 





Now that I've wrapped around I don't see Last successful build folder being 
updated any more. It still has a build 


from 8 days ago (when the wrap occurred), and I've had many successful build 
since then. 





Any idea what could be going on ?? Or how to get around this ?? 





I am running Jenkins ver 1.550 





thanks 


walter 


-- 




-- 
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/d/optout . 

-- 
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/d/optout.


a few Jenkins questions

2014-05-28 Thread wakelt


I have been using Jenkins for a few months now. I've apparently run enough 
builds that the build number scheme 
used by Jenkins (ex. Project_JUnit #978) has now wrapped around to 
Project_Junit #20. These are not the exact 
numbers but you get the idea. 

Now that I've wrapped around I don't see Last successful build folder being 
updated any more. It still has a build 
from 8 days ago (when the wrap occurred), and I've had many successful build 
since then. 

Any idea what could be going on ?? Or how to get around this ?? 

I am running Jenkins ver 1.550 

thanks 
walter 

-- 
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/d/optout.


Build works from command line but not reliable (yet) with Jenkins

2014-05-20 Thread wakelt

I have an android build that runs junit tests. I can use ANT and run the test 
from the command line without issue. 
It takes about 10 minutes to complete. It is reliable. 

When I run it within Jenkins, it seems to "hang" in random tests (I look in the 
log being generated and see it seemly spinning 
its wheels in different tests). It can run for hours and not complete. I am 
using the same version of ANT and Java in Jenkins 
as I am using from the command line. 

These tests are using a LOT of memory. Again, they run fine outside of Jenkins. 
Any idea of how to troubleshoot what 
Jenkins is waiting on ?? Could there be a memory issue ?? (I would think that 
Jenkins is launching ANT in a separate process 
so it should be no different (from a memory perspective) than me running from 
the command line). 

thanks 
walter 

-- 
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/d/optout.


Re: URGENT: I am new for Jenkins and how to integrate soapui into jenkins.

2014-05-14 Thread wakelt
The syntax looks correct. 

I'd check the config.xml for this specific build project and make sure the 
triggers element contains 
your trigger. For example, in one of my build project config files, I can see 
my trigger (which is different than yours): 

- < triggers > 
- < hudson.triggers.TimerTrigger > 
< spec > H 8-22/4 * * 1-5  
 
 
< concurrentBuild > false  

It It may be helpful if you were to include a "picture" of the entire build 
page, especially the things that occur before 
tthe build is supposed to be triggered. 



- Original Message -

From: "vidhya radha"  
To: jenkinsci-users@googlegroups.com 
Cc: mac...@mol.com.pl 
Sent: Wednesday, May 14, 2014 6:58:27 AM 
Subject: Re: URGENT: I am new for Jenkins and how to integrate soapui into 
jenkins. 

*/5 * * * * in build periodically. 

On Wednesday, May 14, 2014 3:55:59 PM UTC+5:30, walter.kelt wrote: 


Okay...please provide the "every 5 minute" trigger text you are using. 

Sent from my iPad 

On May 14, 2014, at 1:21 AM, vidhya radha < vidhyar...@gmail.com > wrote: 




Hi, 

If i click build now manually its triggering the build but its not 
automatically if i set the time for 5mins. 

On Monday, May 12, 2014 6:53:18 PM UTC+5:30, walter.kelt wrote: 


if your trigger the build manually, does it build ?? (lets make sure everything 
else is setup properly, than 
add a automatic trigger to is) 


From: "vidhya radha" < vidhyar...@gmail.com > 
To: jenkins...@googlegroups.com 
Cc: mac...@mol.com.pl 
Sent: Monday, May 12, 2014 9:15:30 AM 
Subject: Re: URGENT: I am new for Jenkins and how to integrate soapui into 
jenkins. 

Hi, 

If i set build trigger for 5 mins its not triggering the build 
automatically.What should i have to do now. 


On Friday, May 9, 2014 1:48:17 PM UTC+5:30, maciej wrote: 


vidhya radha (2014-05-09 07:18): 



Hi Amit, 

I have tried this link but it is not trigger the build automatically when the 
person changes the code. 



You can either use Poll SCM job configuration option or use post commit hook to 
trigger build directly after change. 

Regards, 
Nux. 






-- 
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-use...@googlegroups.com . 
For more options, visit https://groups.google.com/d/optout . 







-- 
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-use...@googlegroups.com . 
For more options, visit https://groups.google.com/d/optout . 








-- 
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/d/optout . 

-- 
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/d/optout.


Re: Eclipse build.xml or build.xml from scratch?

2014-05-13 Thread wakelt
the questions does make sense to me. We added to the eclipse generated build. 
Basically we created some 
custom ANT targets that we import into the eclipse default. 

We use Jenkins to control our build execution. We have Jenkins using ANT to 
perform the actual builds. 

good luck 
wk 
- Original Message -

From: stevesi...@gmail.com 
To: jenkinsci-users@googlegroups.com 
Sent: Tuesday, May 13, 2014 4:35:47 PM 
Subject: Eclipse build.xml or build.xml from scratch? 

I'm totally new to Jenkins, and am trying to figure out if we can use it for a 
project 

If I want to do continuous integration for a project where we're using Eclipse, 
am I supposed to reuse the Eclipse-generated build.xml, or do I need to write a 
build.xml from scratch? 

Or does that question even make sense? 

Thanks. 


-- 
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/d/optout . 

-- 
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/d/optout.


Re: URGENT: I am new for Jenkins and how to integrate soapui into jenkins.

2014-05-12 Thread wakelt
if your trigger the build manually, does it build ?? (lets make sure everything 
else is setup properly, than 
add a automatic trigger to is) 

- Original Message -

From: "vidhya radha"  
To: jenkinsci-users@googlegroups.com 
Cc: mac...@mol.com.pl 
Sent: Monday, May 12, 2014 9:15:30 AM 
Subject: Re: URGENT: I am new for Jenkins and how to integrate soapui into 
jenkins. 

Hi, 

If i set build trigger for 5 mins its not triggering the build 
automatically.What should i have to do now. 


On Friday, May 9, 2014 1:48:17 PM UTC+5:30, maciej wrote: 


vidhya radha (2014-05-09 07:18): 



Hi Amit, 

I have tried this link but it is not trigger the build automatically when the 
person changes the code. 



You can either use Poll SCM job configuration option or use post commit hook to 
trigger build directly after change. 

Regards, 
Nux. 





-- 
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/d/optout . 

-- 
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/d/optout.


Re: URGENT: I am new for Jenkins and how to integrate soapui into jenkins.

2014-05-12 Thread wakelt
Please show us your build trigger 

- Original Message -

From: "vidhya radha"  
To: jenkinsci-users@googlegroups.com 
Cc: mac...@mol.com.pl 
Sent: Monday, May 12, 2014 9:15:30 AM 
Subject: Re: URGENT: I am new for Jenkins and how to integrate soapui into 
jenkins. 

Hi, 

If i set build trigger for 5 mins its not triggering the build 
automatically.What should i have to do now. 


On Friday, May 9, 2014 1:48:17 PM UTC+5:30, maciej wrote: 


vidhya radha (2014-05-09 07:18): 



Hi Amit, 

I have tried this link but it is not trigger the build automatically when the 
person changes the code. 



You can either use Poll SCM job configuration option or use post commit hook to 
trigger build directly after change. 

Regards, 
Nux. 





-- 
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/d/optout . 

-- 
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/d/optout.