Re: Pull two repos into one build

2020-05-19 Thread Felix Dorner
7;, relativeTargetDir: subdir1], ]] ///... However, I did change that because I dont know how to handle pull requests in a simple way with this approach. I now use git submodules, so one is a submodule of the other. Felix On Tue, May 19, 2020, 14:13 Pete Kane wrote: > Title says it all really - I

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
, etc.) look at /etc/default/jenkins, if you modify don't forget to restart the service. A later upgrade with dpkg -i jenkins_1.yyy_all.deb should respect your configuration if there are no conflicts, otherwise you'll get the resolver as usual with dpkg Regards Felix On 2015-04-03 18:

AW: Warning: Problems with Jenkins 1.600 when env-inject is installed

2015-03-02 Thread Felix Nawroth
Thank you for your heads-up. Do you have any information whether LTS 1.596.1 is affected as well? I was about to install it tomorrow morning because of the security advisory. Comparing your patch in https://issues.jenkins-ci.org/browse/JENKINS-27178 with the code from LTS (https://github.com/j

Re: Master running Java7 slaves running Java8?

2015-01-21 Thread felix schwitzer
-releases not working correct. If I remember right Java8-36 did not work, but Java8-37 did) regards Felix On 2015-01-21 03:33, Slide wrote: Mark, Thanks for the info! Much appreciated! Slide On Tue Jan 20 2015 at 7:01:53 PM Mark Waite <mailto:mark.earl.wa...@gmail.com>> wrote:

AW: confirming the build before starting

2014-11-12 Thread Felix Nawroth
build button if all parameters are in their expected ranges, not empty etc. But then again this really is something you would expect your users to take care of themselves. Just make sure to catch all input that might cause damage. Regards, Felix Von: jenkinsci

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: Fwd: Disconnect node / reconnect node programmatically (Groovy)

2014-10-20 Thread felix
something like import jenkins.model.*; for (slave in Jenkins.instance.slaves) { def comp=slave.computer; if (comp.isOffline()) { if (comp.getOfflineCauseReason().matches(".*computer was idle.*")) { comp.connect(true); } else { println("${comp.name} went offline unexpected"

Re: Connect Jenkins Server to Build server

2014-09-20 Thread felix
n your setup it in more detail, before somebody can help you on this list. Regards Felix On 2014-09-18 11:43, aniket jindal wrote: Hi team, I am new to Jenkins and I need to connect Jenkins Server to a Build server build on linux so that the build can be pushed to Jenkins automatically. Any

Re: View Job Filter - not picking up jobs

2014-09-04 Thread felix
We have for each configuration an extra slave and each slave has 1 executor only. This should give you the desired behaviour. On 2014-09-04 17:27, Jacob Robertson wrote: I really question your regular expression. .\\*_AppScan_* This would match ANYTHING_Ap

Multijob-plugin: always execute last phase (even after failures)

2014-08-08 Thread felix drueke
independent of previous jobs failing or not. Is that possible and how? Thanks, Felix -- 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-user

Re: workspace cleanup plugin 0.2.1: Cannot delete workspace

2014-07-06 Thread felix
I have exactly the same problem On 2014-07-01 14:25, jv wrote: *Hi, since I updated Jenkins from 1.567 to 1.570 and Workspace Cleanup Plugin from 0.20 to 0.21, all jobs using workspace cleanup are failing: 00:00:06.943* Cannot delete workspace: java.io.IOException: Cannot run program "/home

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: HELP! Maven builds don't show error messages when run under Jenkins...

2013-09-23 Thread Felix Riegger
Hi Vincent, we are on 1.531 now, but the problem is still present. Is there a ticket to this problem? Kind regards, Felix On Saturday, August 24, 2013 8:55:34 AM UTC+2, Vincent Latombe wrote: > > Hi Jeff, > > it's a bug introduced in core/maven-plugin a few versions ago. I

AW: Is is possible to get Rake, Ruby or Rspec output in real time

2013-05-16 Thread Petriconi, Felix
Hi David, it already helped me to put the following statement at the top of the rake file: $stdout.sync = $stderr.sync = true Regards, Felix Von: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] Im Auftrag von David Williams Gesendet: Donnerstag, 16. Mai 2013 01:24

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

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

Problem with Java 7.0.21 under Windows in combination with Rake Plugin

2013-05-02 Thread Petriconi, Felix
here a known workaround? Many thanks in advance and regards, Felix -- 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...@googleg

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
really complex; If I enter the chroot in the build steps, I have to change into the chroot conditionally, depending on the slave that builds the job. Thanks Felix -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this

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, Kar

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

Re: Passing Revision numbers - quick question

2013-01-02 Thread felix schwitzer
subjob after the 1st job started? If so, how do we do it ? Thanks We do this all the time using the parameterized trigger plugin, see https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Trigger+Plugin Regards Felix

Re: multiple runs claiming to be #

2012-09-26 Thread Felix Köhler
ts links these are overridden by > the job that last ran, causing links to be pointing to different builds > than they should be. > > Chris > > > On Wednesday, September 26, 2012 12:32:21 PM UTC+1, Felix Köhler wrote: >> >> Hi erveryone, >> >> Im ne

multiple runs claiming to be #

2012-09-26 Thread Felix Köhler
Hi erveryone, Im new to this list. I tried serveral other communication way but found no good solution. After i restarted my Server with my tomcat/jenkins installation i got a strange problem. Every Job (if they are the same type - Free Job Configuration) they have the same Build History. Fo

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

AW: Files created as Administrator on windows slave

2012-04-18 Thread Petriconi, Felix
nothing to do with Jenkins, but this is a Windows feature. (Well, you did not mentioned the Windows version, but according to my experience this is valid for Windows 7 and Windows Server 2008 R2). Regards, Felix -Ursprüngliche Nachricht- Von: jenkinsci-users@googlegroups.com [mailto:jenkinsci

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