Re: Git publisher fails to push

2013-08-30 Thread davidkarlsen
I seem to have the same issue - is this still not fixed? kl. 07:56:05 UTC+1 torsdag 14. mars 2013 skrev Patrick følgende: > > Hi All > > I've been trying to use the GIT publisher to push the changes from my > integration branch back to my origin/master branch (sort of like here: > http://twasink

Re: SVN Checkout failing on Jenkins slave servers

2013-08-30 Thread arthurherman
We are experiencing the same behavior. When the credentials are entered from the config page and successfully validated, they are stored in $JENKINS_HOME/jobs/$JOB_NAME/subversion.credentials (or $JENKINS_HOME/hudson.scm.SubversionSCM.xml if you use global credentials) < https://s

Re: Build Flow Plugin: ignore / retry

2013-08-30 Thread Slide
Why, yes, yes you can. I guess that makes it easier! I think I'll mark the ones with the segfault as being unstable, does retry work on unstable builds or just failures? On Fri, Aug 30, 2013 at 11:03 AM, nicolas de loof wrote: > Can't you use log parser plugin to change target job status dependi

Re: Build Flow Plugin: ignore / retry

2013-08-30 Thread Slide
The only negative to using the log parser plugin is I have to go through all of my jobs and configure it, if I could do it in the build flow I wouldn't need to do that, but c'est la vie. On Fri, Aug 30, 2013 at 11:03 AM, nicolas de loof wrote: > Can't you use log parser plugin to change target j

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread nicolas de loof
right, need to programmatically add the AggregatedTestResultAction to current flow as part of the DSL. Probably could be packaged as an extension 2013/8/30 James Nord (jnord) > The problem with a flow is that the flow can be dynamic – so having to > specify the jobs may lead to incorrect jobs

Re: Build Flow Plugin: ignore / retry

2013-08-30 Thread nicolas de loof
Can't you use log parser plugin to change target job status depending on console output ? 2013/8/30 Slide > First of all, I have to say that the build-flow-plugin is great. It has > simplified my build flow significantly, so thanks for that! I had a couple > questions about ignore and retry th

Build Flow Plugin: ignore / retry

2013-08-30 Thread Slide
First of all, I have to say that the build-flow-plugin is great. It has simplified my build flow significantly, so thanks for that! I had a couple questions about ignore and retry that can hopefully be answered. I currently have an ignore(FAILURE) block with a build inside. I would actually like

IRCbot plugin fails with ngricd

2013-08-30 Thread Alex O'Ree
Hi, I'm running a ngircd server in a private lan and wanted to get the Jenkins IRC bot setup with it. Are there any known issues with ngircd with the IRC bot? The log has a message like Could not log into the IRC server : :address 461 jenkins user "Syntax error The irc server just says connectio

Subversion Plugin - when release of 1.51?

2013-08-30 Thread Christian Ehrlicher
Hello, is there a plan when to release a new subversion plugin? 1.50 does not work with subversion 1.8 server but afaics the fix (using svnkit 1.7.10) is already commited. I tried to compile the plugin by my own but got stuck during installation. Jenkins somehow does not recognize that my vers

RE: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread James Nord (jnord)
The problem with a flow is that the flow can be dynamic - so having to specify the jobs may lead to incorrect jobs being aggregated - or maintinaing duplicate information. It also appears to rely upon getDownStreamRelationship that relies on fingerprints to work unless overridden. Perhaps this

Re: Warnings Plugin with JsLint issuing a SAXParseException?

2013-08-30 Thread Ulli Hafner
The warnings plug-in does not scan js files using the JSLint scanner. It only visualizes the results from JSLint. I.e., you need to run JSLInt in your build. And then the plug-in will pick up these results and visualizes these on the build page. Ulli Am 29.08.2013 um 11:00 schrieb Giovanni Tor

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread nicolas de loof
I don't want to follow this direction, as I know people won't consider the warning on documentation. AggregatedTestResultPublisher can be configured with a set of jobs, maybe this require some tweaks on UI, not sure (sorry, don't have much time to investigate on this topic today) 2013/8/30 John

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread John Russell
I see the class javadoc for that class but how would I use that to actually aggregate the junit tests to report in the build-flow plugin? Is it also possible to discourage people in the documentation and yet leave the workspace there so its possible? On Fri, Aug 30, 2013 at 9:22 AM, nicolas de l

Error 404 Html Publisher Plugin

2013-08-30 Thread Sascha
Hi everyone, I have a very simple MSBuild project in Jenkins that produces code coverage information. When trying to use the link provided by Html Publisher Plugin in the project view I get an 404 error: Status Code: 404Exception: Stacktrace: (none) -- *Generate

Re: Change user password

2013-08-30 Thread Gaurang shah
oh.. Don't know how i missed it.. thanks for the quick reply. Gaurang Shah Blog: qtp-help.blogspot.com Mobile: +91 738756556 On Fri, Aug 30, 2013 at 7:02 PM, Mandeville, Rob wrote: > The password is just another user setting. The user can change their > password by selecting their name (nex

RE: Change user password

2013-08-30 Thread Mandeville, Rob
The password is just another user setting. The user can change their password by selecting their name (next to the "log out" button on the top right), then "Configure". --Rob From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Gaurang shah Sent: Frida

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread nicolas de loof
I indeed removed workspace support especially to discourage such a "write some custom jenkins code using DSL" approach. build-flow is about orchestrating jobs, not creating custom plugins junit aggregator is using the original location for junit results, and dynamically aggregating. It doesn't cop

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread John Russell
Teilo, When did build flow stop having a workspace? I finally got this to work by archiving all of the junit files from the downstream jobs onto the master, running build-flow on the master, and directly copying the files from the archive of the downstream build to build flow and running the ju

Change user password

2013-08-30 Thread Gaurang shah
Hi Guys, I just configured *Project-based Matrix Authorization Strategy, *crated few user and assign them some right. * * However i didn't find anywhere how to change the password for that user. I mean to say, I am going to pass this credential to individual user, but what if they want to ch

RE: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread James Nord (jnord)
If the things you are aggregating aren't junit like test reports you're a bit lost though. E.g. https://github.com/masterthought/jenkins-cucumber-jvm-reports-plugin Whilst cucumber does support JUnit output which could be used by the Aggregated...Publisher - it is exceptionally limited to the p

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread nicolas de loof
AggregatedTestResultPublisher should work with build-flow, passing the list of jobs to aggregate. I'm not sure it could automatically support the downstream mode, need to setup a test instance to check what prevent this, but can image few reasons. 2013/8/30 teilo > The BuildFlow doesn't use a w

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread teilo
The BuildFlow doesn't use a workspace anymore[1] - so your workaround most likely won't work as you expect. I'm not convinced that this is a good thing as like you I would like to show test results in the main flow job - not have another job that is just aggregate & report. On Monday, 12 Augus

Re: Build flow plugin: How to copy results from downstream jobs

2013-08-30 Thread Nico dHeureuse
I have a very similar problem: I'm looking for a way to get the aggregated test results which are published by some of my jobs. However, the main Build Flow job does not seem to correctly identify the downstream tasks it needs to collect the test results from, even though the fingerprinting of

Re: Trac Publisher plugin

2013-08-30 Thread Daniel Ritchie
> Up to this point I notice that latest version of Trac XML-RPC is 1.1.2 > ... and the difference in the minor version number really matters . > Yep. In my case, Debian upgrade from 6.x to 7.x also took trac-xmlrpc up to 1.1.2. I stopped debugging and started upgrading when I saw how far behi