Re: SSH slave connection issues after Jenkins update

2013-02-12 Thread Pasi
Nobody has any ideas about this? What logs to check, increase debug prints somehow? Yesterday I once more did Jenkins update from 1.451 to 1.466.2 and SSH slaves are still not working. There is nothing related to SSH connections in any logs I checked, and monitoring IP packets with tcpdump

Warnings plugin configuration ?

2013-02-12 Thread Jan Goyvaerts
I'm trying to to use the Warnings Plugin ( https://wiki.jenkins-ci.org/display/JENKINS/Warnings+Plugin) to publish the compilation warnings - obviously. :-) The problem is that no warnings show at all. Neither is there an option in the job configuration to publish those warnings. As it is the

Monitoring Metrics (eg. code coverage) Degradation

2013-02-12 Thread Zigster
Hi, I'm trying to figure out, how to monitor the state of the code coverage in a project. Therefore, I would want to let the build get marked as failed as soon as the code coverage (or any other metric) drops from the previous build to the current. While browsing through the avalibale

Re: Warnings plugin configuration ?

2013-02-12 Thread Ulli Hafner
Is there no entry in the Add post build action drop down list that is called scan for compiler warnings? Are you using a maven or freestyle job type? Which Jenkins and warnings version? Ulli Am 12.02.2013 um 12:47 schrieb Jan Goyvaerts java.arti...@gmail.com: I'm trying to to use the

Re: Warnings plugin configuration ?

2013-02-12 Thread Jan Goyvaerts
On Tue, Feb 12, 2013 at 1:39 PM, Ulli Hafner ullrich.haf...@gmail.comwrote: Am 12.02.2013 um 13:23 schrieb Jan Goyvaerts java.arti...@gmail.com: On Tue, Feb 12, 2013 at 1:19 PM, Ulli Hafner ullrich.haf...@gmail.comwrote: Is there no entry in the Add post build action drop down list that is

Re: Warnings plugin configuration ?

2013-02-12 Thread Ulli Hafner
Ok, thanks! I did't update the documentation after changing the visualization… (It only looks different for Java warnings up to now:-) Interested in adding any missing documentation parts in the wiki? Sure ! How ? What pages ? (be aware I just know about this plugin - you seem to

Re: Monitoring Metrics (eg. code coverage) Degradation

2013-02-12 Thread Octavian Covalschi
You may not like this solution, but until someone will post a better solution, you could potentially create a simple shell task and run your coverage metrics from there... With some magic you could check the results and return 0 or 1 (i'm not sure the exact value), which will tell jenkins if it

RE: Cannot load Maven 3 on slave

2013-02-12 Thread Markus KARG
You misunderstood: Jenkins IS already configured to do so! From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Sami Tikka Sent: Montag, 11. Februar 2013 23:44 To: jenkinsci-users@googlegroups.com Subject: Re: Cannot load Maven 3 on slave No, but

Re: Jenkins 1.500 is losing builds

2013-02-12 Thread Markus KARG
Thanks for pointing to this. Seems they work on a solution. I'll have to wait... :-) Am Montag, 11. Februar 2013 11:24:21 UTC+1 schrieb Johannes Wienke: On 02/09/2013 07:06 PM, Markus KARG wrote: I thought my Jenkins 1.500 installation is working stable, but today I noticed that it is

Re: How to publish artifact to a SMB / CIFS share?

2013-02-12 Thread Markus KARG
After two days of intensive use I need to say that the Publish Over CIFS Plugin works great! Can really recommend to everybody! :-) Am Samstag, 9. Februar 2013 23:46:26 UTC+1 schrieb old hooky: Quoting Markus KARG mar...@headcrashing.eu javascript:: I need to publish an artifact to a

Re: Config File Provider Plugin does not store new files

2013-02-12 Thread Markus KARG
ping? Am I the only one using IE9? Am Freitag, 8. Februar 2013 14:23:45 UTC+1 schrieb Markus KARG: Just noticed that it happens with IE 9 only while it runs well with Safari. Any ideas? Am Freitag, 8. Februar 2013 14:04:01 UTC+1 schrieb Markus KARG: Frank, you don't see the actual

RE: Config File Provider Plugin does not store new files

2013-02-12 Thread Merrow, Frank
I use almost exclusively Chrome . . . though I just tried to create a Config file using IE9 and had no issues. It might be nice to know exactly the kind of file you are trying to create. Perhaps you have a XML error in an XML file or equal in another file type . . . Also, what version of

Re: creating a tag and pushing to github

2013-02-12 Thread Octavian Covalschi
If you haven't found a way, you could try doing it using a simple exec shell step, i mean the same steps you'd do in command line... you may have to play with parameters though, so you script would know tag's name for example. On Mon, Feb 11, 2013 at 10:01 AM, Chris Withers

using git with Jenkins , stderr: ssh: Could not resolve hostname : Name or service not known

2013-02-12 Thread Kamal Ahmed
I am trying to use git with Jenkins. The URL that i have been given is: git clone 10.100.243.212:/var/www/invo_app , which works as an LDAP user on command line: But when i use Jenkins , i get: Cloning repository ssh:///$GIT_USER@1.2.3.4:/var/www/invo_app git --version git version 1.7.9.5

Anyone written a config file parser/script generator?

2013-02-12 Thread Steve K
Hello, We invest so much time and effort into maintaining Jenkins jobs, I fear that my organization would be dead in the water if Jenkins went down. I'd like a way to extract the build steps from the config files--tuning them into an executable script. It seems possible to translate the config

Re: Anyone written a config file parser/script generator?

2013-02-12 Thread Les Mikesell
On Tue, Feb 12, 2013 at 1:59 PM, Steve K steve.kerxha...@carestream.com wrote: Hello, We invest so much time and effort into maintaining Jenkins jobs, I fear that my organization would be dead in the water if Jenkins went down. I'd like a way to extract the build steps from the config

Re: Anyone written a config file parser/script generator?

2013-02-12 Thread Slide
I've actually done the opposite of this to migrate from our internal build tool to Jenkins a few years ago. The config.xml files that have the build info are pretty easy to parse if you are looking for a way to do that, any XML library for any language you are familiar with would make quick work

REST API - How reliable is color tag?

2013-02-12 Thread Octavian Covalschi
Hello, We're linking our database entities to a job in jenkins, it's 1 to 1 relation. So, as a result we'd like to display real time job's status. I found 2 ways, 1. using /job/job1/api/xml (color tag) 2. using /job/job1/lastBuild/api/xml (building, result tags) In both cases it seems possible

Re: Anyone written a config file parser/script generator?

2013-02-12 Thread Octavian Covalschi
Once you have your config.xml files backed-up you should be able to restore your jobs, through Rest API. For old buils, if they are important you should make other arrangements... Backing-up entire .jenkins directory, should help too, but you'll need more space of course. On Tue, Feb 12, 2013

Jenkins tricks for Windows Visual Studio 6.0 That I've found useful.

2013-02-12 Thread Ross Youngblood
Just a FYI, For users doing builds in Microsoft Visual Studio 6, you might wonder Why do my builds fail? Well when you start MSDEV, you normally get all kinds of include/libs setup based on a registry for visual studio, these environment variables are not set… sometimes not even by vsvcvars.bat!

Stupid Windows VS6.0 C++ Jenkins Tricks (update)

2013-02-12 Thread Ross Youngblood
This is a re-post with another tidbit regarding adjusting the skip=xx parameter for different WINDOZE flavors. One note, the For users doing builds in Microsoft Visual Studio 6, you might wonder Why do my builds fail? Well when you start MSDEV, you normally get all kinds of include/libs

Re: Windows Slave Error - The handle is invalid.

2013-02-12 Thread Slide
Bump on this. I'm seeing the same thing after rebooting my master (I know, you should never ever reboot, but I had to install updates!). Anyone seen this and have a workaround? On Wed, Jan 23, 2013 at 2:23 AM, Ronan Mulvaney ronan.mulva...@gmail.comwrote: We are experiencing a complete

Priority Sorter Plugin

2013-02-12 Thread Adam Mercer
Hi I'm using the Priority Sorter Plugin[1] as I'd like one project to use the next available build host regardless of the other jobs ahead of it in the queue. According to the documentation for the plugin: This plugin allows jobs waiting in the build queue to be sorted by a static priority

RE: Priority Sorter Plugin

2013-02-12 Thread Mandeville, Rob
Check the open issues list on that plugin. It looks like jobs kicked off by hand (rather than scheduled automatically) ignore priority sorting. Someone listed that as a feature there. If you kicked off the priority 10 job by hand, or the job that gets ahead of you in the queue was kicked off

RE: Priority Sorter Plugin

2013-02-12 Thread Merrow, Frank
1. Did you restart Jenkins after installing the plugin (if not, do it now) 2. Does the job have a restriction? Like to linux or a specific hostname? The priority module won't force a job to run on a host it wouldn't be allowed to run on without priority. Finally, I'm not sure what comes

Re: Priority Sorter Plugin

2013-02-12 Thread Adam Mercer
On Tue, Feb 12, 2013 at 3:21 PM, Mandeville, Rob rmandevi...@litle.com wrote: Check the open issues list on that plugin. It looks like jobs kicked off by hand (rather than scheduled automatically) ignore priority sorting. Someone listed that as a feature there. If you kicked off the

Re: Priority Sorter Plugin

2013-02-12 Thread Adam Mercer
On Tue, Feb 12, 2013 at 3:26 PM, Merrow, Frank fmer...@qti.qualcomm.com wrote: The priority for this job. Priorities are used when all executors are busy to decide which job in the build queue to run next. A job with higher priority is ran before jobs with lower priorities. So the job you

RE: Priority Sorter Plugin

2013-02-12 Thread Merrow, Frank
Yep . . . shrug . . . All I know is if I want to temporally boost the priority of a job without losing what the original value was . . . I add a zero on the end, save and it jumps to the front of the queue. At a later time I can come back and remove the zero to return it to its normally

Re: Priority Sorter Plugin

2013-02-12 Thread Adam Mercer
On Tue, Feb 12, 2013 at 3:45 PM, Merrow, Frank fmer...@qti.qualcomm.com wrote: Yep . . . shrug . . . All I know is if I want to temporally boost the priority of a job without losing what the original value was . . . I add a zero on the end, save and it jumps to the front of the queue. At a

Re: Priority Sorter Plugin

2013-02-12 Thread J Arrizza
I've been using this plugin for a while (only in Hudson - converting to Jenkins... today.) The priority number is only used to sort the jobs in the queue and not based on jobs already in the executors. This means: - it seems to take a few seconds for the sort to occur. Usually not an

Re: Priority Sorter Plugin

2013-02-12 Thread Adam Mercer
On Tue, Feb 12, 2013 at 4:07 PM, J Arrizza cppge...@gmail.com wrote: And one last bit of confusion that still manages to bite me: the higher the priority number, the higher the priority. For some reason, I think #1 is the highest priority... it isn't, it's the lowest. So your job priority of

Re: Anyone written a config file parser/script generator?

2013-02-12 Thread J Arrizza
I'm not sure why you would want yet another way to do it. Basically for migration and maintenance purposes 1) I've got a set of scripts that can populate my Hudson jobs. So I can delete all the jobs, re-run my scripts and nearly everything is back to where it was. I took those scripts, re-did

Re: Priority Sorter Plugin

2013-02-12 Thread Adam Mercer
On Tue, Feb 12, 2013 at 4:13 PM, Adam Mercer ramer...@gmail.com wrote: Thanks, that's what was confusing me. I've adjusted the priorities according and I'll see how that effects the behaviour. And that did the trick, jobs are now running with the priority I expect. Thanks! Cheers Adam --