NUnit Publisher: 'NumberFormatException: empty String'

2016-05-02 Thread Christoph M
Hi, since friday we have a problem with our Jenkins. We have some projects which are tested by NUnit. This works and writes the results into an XML file. As a post-build step we have a "Publish NUnit test result report" and that's what causes this error: Recording NUnit tests results ERROR:

NUnit Publisher: NumberFormatException: empty String

2016-05-02 Thread Christoph M
Hi, we have a Jenkins installation and some projects which are tested by NUnit. This works fine and it writes an NUnit results XML file. Then we have a '*Publish NUnit test result report*' post-build step. But since friday it produces this error: Recording NUnit tests results ERROR: Step

Re: Jenkins produces blank page and crashes

2016-04-07 Thread Christoph M
Okay - it seems that my messages are deleted when I'm trying to upload files. Posing them as cler text here will cut them. Could you please tell me how I can serve them properly here? Am Mittwoch, 6. April 2016 12:44:15 UTC+2 schrieb Daniel Beck: > > > On 06.04.2016, at 12:37, Christo

Re: Jenkins produces blank page and crashes

2016-04-07 Thread Christoph M
Okay, I'll give it another try: Original message: --- Hi Daniel, I just waited for another crash (this time Jenkins doesn't even respond) and captured some thread dumps via jstack. The files are attached to this message: crashed: While Jenkins didn't respond afterrestart: Directly after

Re: Jenkins produces blank page and crashes

2016-04-06 Thread Christoph M
My message was deleted. Why? -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-dev+unsubscr...@googlegroups.com. To view this discussion on the

Re: Jenkins produces blank page and crashes

2016-04-06 Thread Christoph M
Hi, thanks for your answer! When do I need to capture a thread dump? When it's operating normally, directly after a creash or while crashing (creating blank pages)? Am Mittwoch, 6. April 2016 12:29:04 UTC+2 schrieb Daniel Beck: > > > On 06.04.2016, at 11:48, Christoph M <chm.

Jenkins produces blank page and crashes

2016-04-06 Thread Christoph M
Hi, I have the following problems with our jenkins setup for about a week now: >From time to time the Jenkins becomes very slow and seconds after this i only get blank pages, running jobs quit and the CPU usage of its Java process stays at ~80%. All I can do is restarting the service. Jenkins

Start process on slave

2015-10-19 Thread Christoph M
I am writing a Jenkins CI plugin. It runs on the slave machine where I want to start a process. I tried this by writing the following code inside the invoke method in a FileCallable: ArgumentListBuilder args = new ArgumentListBuilder(); args.addTokenized(nsisExecutable.toString() + "

Re: Jenkins CI Plugin run on slave

2015-10-13 Thread Christoph M
> > Hi, thank you for your answer! The whole build step should be executed on the slave. The "unable to serialize" error was caused by passing the Launcher object to the callable for the slave. Instead using the master's launcher i got the hint to use something like this:

Jenkins CI Plugin run on slave

2015-10-12 Thread Christoph M
Hi folks! I am developing a plugin for the Jenkins CI. Now i get a problem when the plugin is running on a slave machine. On the slave I need logging to the master, passing parameters from the master and launching processes on the slave. Therefore I wrote this code: private static class