Re: Unable to view Test Result Link

2016-08-08 Thread felix schwitzer
Maybe you should use xunit plugin to transform and publish the xmlreports. I'm not familiar with mstest but I use this technique for publishing cppunit and ctest result reports, and xunit has an option to publish mstest results too. On 2016-08-08 12:58, sandhyaranimukkamala...@gmail.com wrot

Re: Access artifacts of upstream project in project chain

2016-06-01 Thread felix schwitzer
Copy artifact has an option "which build" and one is something like "upstream project that triggered the build" Hope this is what you are looking for On 2016-05-21 10:44, Tom Deseyn wrote: Yes, that is what I use, but I don't know how to pass it the upstream build number, hence my question

Re: Need help to configure jenkins for unit testing.

2015-12-23 Thread felix schwitzer
Does your tests output some xml-reports? Which unit testing framework you use? I use cppunit and this has a xml-outputter. After the test run the XUnit-Plugin can collect all the test reports and draw the graphs and so on. But I think, you (or your testing framework) must generate all this xml-

Re: Not able to generate HTML report of my Job.

2015-04-26 Thread felix schwitzer
Something in the Console Output of that build? The plugin writes there what it does. On 2015-04-23 12:35, Krishna Kumar Tiwari wrote: Hi I followed the steps present on https://wiki.jenkins-ci.org/display/JENKINS/HTML+Publisher+Plugin but stil can't see my html report on jenkins dashboard. How

Re: Jenkins builds all branches ONLY on first push

2015-04-13 Thread felix schwitzer
On 2015-04-13 22:19, Konrad Slepoy wrote: Isn't this a really standard behavior though? Who wants all of their branches to build when they push to one even if they have never been built before? For us this is exactly what we need. We have a project that is multi-platform and developer can not

Re: Installing Jenkins manually in Ubuntu 12.04?

2015-04-04 Thread felix schwitzer
I do this all the time, should be simple. First download the deb from http://pkg.jenkins-ci.org/debian/ then in a console run sudo dpkg -i jenkins_1.xxx_all.deb after that jenkins starts, or you can start/restart with sudo service jenkins [re]start To configure jenkins (PORT, JAVA_ARGS, e

Re: Master running Java7 slaves running Java8?

2015-01-21 Thread felix schwitzer
FYI: Today I tried to connect my Win7-Java8 slave with my master (ubuntu1404 with OpenJDK7) and I was not able to connect, the slave gave an NPE-exception. After upgrading my java8 (Oracle), reconnecting worked fine. So there may be some issues, but it looks to me that there are some Java8-rel

Re: Fwd: Disconnect node / reconnect node programmatically (Groovy)

2014-11-02 Thread felix schwitzer
My code snippet was just a starting point. To elaborate your use case you may need to do some investigations; a good start point may be http://javadoc.jenkins-ci.org/ On 2014-10-21 01:18, pjl83...@gmail.com wrote: Just to be clear, the solution you proposed for connecting is not just for han

Re: xUnit and ctest results

2014-01-22 Thread Felix Schwitzer
It was not remarkable for me, but I do it all the time this way :) On 2014-01-22 13:39, ycollet wrote: > Thanks. I've done that and it worked. > But I am a little bit puzzled by the fact the nobody has yet noticed > the problem ... > > YC > > Le mardi 21 janvier 2014 14:03:00 UTC+1, ycollet a écri

Re: Running slave in a chroot

2013-05-10 Thread felix schwitzer
That's indeed a big drawback in my approach because some of my tests uses system global semaphores. So I have to rethink my approach :-( Thanks for your hint. Felix On 2013-05-08 22:15, Dean Yu wrote: When I was working at Yahoo!, and we started working with Hudson/Jenkins, we originally went

Re: Job scheduling for 2 independent Repos does not schedule them in parallel

2013-05-06 Thread felix schwitzer
Did you configure your slave to have more than one '# of executors' ? See 'manage jenkins -> manages nodes -> (nodename) -> configure' On 2013-04-30 01:50, rakhee Kulkarni wrote: Folks, I have Jenkins configured with multiple slaves and I have builds running of off two independent Repos. I not

Re: Running slave in a chroot

2013-04-22 Thread felix schwitzer
r you just connect as the chroot'ed user On 18 April 2013 19:57, felix schwitzer <mailto:flx2...@yahoo.de>> wrote: I have a buildserver (ubuntu 12.04) and need to run a jenkins slave on that server in a (s)chroot environment. Question: How can I set up a slave th

Running slave in a chroot

2013-04-18 Thread felix schwitzer
I have a buildserver (ubuntu 12.04) and need to run a jenkins slave on that server in a (s)chroot environment. Question: How can I set up a slave that runs directly in the chroot-environment on that buildserver? I mean, who can I achieve that jenkins master connects directly into the chroot?

Re: SVN post-commit hook not triggering jenkins build

2013-04-02 Thread felix schwitzer
The entry in the jenkins log gives you a hint. I'm quiet sure that you configureded authentification, but you don't provide it in the trigger. Read the wiki more carefully, especially the part about the configuration for the netrc-file. Regards Felix On 04/02/2013 09:04 AM, Karolis wrote: ANYON

Re: Silently triggering a build using the git plugin

2013-01-23 Thread felix schwitzer
I observed this problem too, but at the end I discovered that the output doesn't come from the git hook, but from the jenkis log, because I started for test reasons the jenkinsserver in the same terminal in background :-( Are you sure that jenkins has been started as a demon or at least detache

Re: Run a build concurrently on all slaves?

2013-01-11 Thread felix schwitzer
For this we use simply a multi-configuration project. Regards Felix On 01/11/2013 05:23 PM, org.jenkins...@io7m.com wrote: Hello. I've set up Jenkins to allow me to test code on a wide range of platforms. Essentially the setup is a master node with no executors (it doesn't build code) that onl

Re: Passing Revision numbers - quick question

2013-01-02 Thread felix schwitzer
On 01/02/2013 03:01 AM, Z W wrote: Hi All We have a chained job (job with 4 subjobs). Is there a way to pass SVN revision number of the update checkout from the 1st subjob to the next subsequent subjob among the build subjobs, so that all the subjobs run on the latest revision number of the 1st

Re: mark build as unstable if it takes too long

2012-09-13 Thread felix schwitzer
On 09/12/2012 11:46 PM, Darren Rowley wrote: > yes exactly.. so why not using a groovy postbuild script? See Example 4 on the wiki https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Postbuild+Plugin Felix

Re: XSL format conversion

2012-02-13 Thread felix schwitzer
On 02/12/2012 09:01 PM, Greg Moncreaff wrote: Any examples? Klocwork. To. Findbugs. Gcov. To. Cobertura. I use gcovr to convert from gcov output to cobertura, works great for me. https://software.sandia.gov/trac/fast/wiki/gcovr