Re: CI usability - isn't there a problem that tests are executed only after a developer pushed his changed to the repsitory?

2013-08-05 Thread Avihay Eyal
Thanks for your ideas. I think an on-demand script would fit my organization, but I'll take into account the way that GIT script works. On Monday, August 5, 2013 4:20:05 AM UTC+3, Mark Waite wrote: -- *From:* Avihay Eyal aviha...@gmail.com javascript: *To:*

Re: CI usability - isn't there a problem that tests are executed only after a developer pushed his changed to the repsitory?

2013-08-05 Thread Nigel Magnay
I don't think that is how the Git plugin does what it does. I believe the Git plugin monitors multiple repositories and branch names for changes. If a change is detected in one or more repositories, the plugin merges those changes into its local branch, and attempts to run the job steps

Re: custom multi-line warnings parser

2013-08-05 Thread Ulli Hafner
Am 23.07.2013 um 12:02 schrieb Roland Schulz rol...@rschulz.eu: Hi, I would like to define a custom multi-line warnings parser. Searching for the question I have found that screenshots show a Multi-line support checkbox. Both with versions 4.27 and 418 I don't see that option. I tried a

Re: CI usability - isn't there a problem that tests are executed only after a developer pushed his changed to the repsitory?

2013-08-05 Thread Tom Moore
Alternatively, if you have a requirement for code passing test/compiling, etc before checkin and you can't or don't want to use private repositories/branches, you can look at developing a variation of your build process that uses the filesystem SCM plugin. Run the build/tests against the

jenkins as jobscheduler

2013-08-05 Thread Federico Paolantoni
Dear list, We are planning to switch from jobscheduler (http://www.sos-berlin.com/modules/cjaycontent/index.php?id=62 http://www.sos-berlin.com/modules/cjaycontent/index.php?id=62page=osource_ scheduler_introduction_en.htm page=osource_scheduler_introduction_en.htm) to Jenkins. Since I have no

Re: jenkins as jobscheduler

2013-08-05 Thread nicolas de loof
A conversion tool seems feasible but I never heard someone did one (I also never heard about jobscheduler before) 2013/8/5 Federico Paolantoni frido...@gmail.com Dear list, We are planning to switch from jobscheduler (

Idea for parameterized trigger plugin

2013-08-05 Thread Hartmut Kühn
Hi all, I have a parameterized trigger plugin job whith 25 subprojects. The subbuilds are blocking and fail, so that the main job fails, too. This way we build all components of our product in correct order and finally do the setup build, if all other builds are ok. From time to time I have

Re: Throttle concurrent builds plugin

2013-08-05 Thread kalpsat
I ahve a situation where matrix job sub job(one per slave) needs to be throttled with free style job, but the free style job can run 4-5 concurrent builds. Looks like throttle does not work for matrix build. or am i wrong. -- View this message in context:

Universal Coverage plugin for Jenkins

2013-08-05 Thread Manu
Hi, I think that, a while ago, there was a discussion about implementing a universal code coverage plugin, based on the cobertura plugin, but that would be able to parse code coverage results from quite a few other tools (see

Call For Paper for Jenkins CI User Conference CPH extended!

2013-08-05 Thread Adam Henriques
*We have extended the deadline for paper submissions for The Jenkins CI User Conference in Copenhagen September 6th! * We are asking for papers on *user stories, tech talks *and *facilitated birds-of-a-feather discussions*. Accepted speakers will recieve a free pass to the conference. All

Build Flow DSL parallel

2013-08-05 Thread Bob Bick
Hi, When running a Build Flow DSL with parallel jobs, I am getting the following error message: ERROR: Failed to run DSL Script groovy.lang.MissingMethodExceptionhttp://stacktrace.jenkins-ci.org/search?query=groovy.lang.MissingMethodException: No signature of method:

Slave SSH Publickey authentication failed

2013-08-05 Thread Avihay Eyal
Hi, I'm trying to setup a build slave, but when failing to connect to it. I receive a IOException: Publickey authentication failed. The setup looks like this: 1. Jenkins Master runs under user 'avihay' in machine A. 2. Slave runs on machine B with IP X (no DNS in my setup, so I'm using

Re: Universal Coverage plugin for Jenkins

2013-08-05 Thread Stephen Connolly
I am always too busy to solve the hard blocking problem: merging coverage results from different toolchains... I have some ideas, but it is always on the back burner. Also, basing on cobertura is a mistake. There were some design decisions I made in that plugin's architecture that in retrospect

Re: jenkins as jobscheduler

2013-08-05 Thread JonathanRRogers
On Monday, August 5, 2013 9:24:49 AM UTC-4, Federico Paolantoni wrote: Dear list, We are planning to switch from jobscheduler ( http://www.sos-berlin.com/modules/cjaycontent/index.php?id=62page=osource_scheduler_introduction_en.htm) to Jenkins. Since I have no idea of best approach to

Re: Slave SSH Publickey authentication failed

2013-08-05 Thread JonathanRRogers
On Monday, August 5, 2013 11:09:33 AM UTC-4, Avihay Eyal wrote: Hi, I'm trying to setup a build slave, but when failing to connect to it. I receive a IOException: Publickey authentication failed. The setup looks like this: 1. Jenkins Master runs under user 'avihay' in machine A. 2.

Re: Slave SSH Publickey authentication failed

2013-08-05 Thread Avihay Eyal
OK, I made some progress. When inserting *manually* the private key in the 'manage credentials' page, it works. I tried it before, but I didn't add the prefix and suffix of the key. What's weird to me, is that I have to manually add the private key. When I'm *selecting* the *'From a file on

Creating Jenkins Nested Views programatically.

2013-08-05 Thread Aseem Mishra
Hi, I am trying to create jenkins views (ListView) under a given view. I am able to create the view at the top level, but not able to find a way to create a view under a given view. I am using groovy to achieve this.Below is the use case: 1. I am using Nested View plugin to organize the

Re: Build Flow DSL parallel

2013-08-05 Thread Daniel Beck
Read the exception carefully: It's simply a typo in 'paralllel'. Please also consider providing a actual, complete, minimal example next time. The syntax errors in what you called snippet were a bit confusing. For reference, the following complete DSL works like a charm ('empty' and 'empty2'

RE: Build Flow DSL parallel

2013-08-05 Thread Bob Bick
Thanks. You are right, it was a typo. I assumed incorrectly that the parallel method parameters were of the wrong type. -Original Message- From: Daniel Beck [mailto:m...@beckweb.net] Sent: Monday, August 05, 2013 2:59 PM To: jenkinsci-users@googlegroups.com Cc: Bob Bick Subject: Re:

Re: CI usability - isn't there a problem that tests are executed only after a developer pushed his changed to the repsitory?

2013-08-05 Thread William Soula
There is also the github pull request builder which will build the merge of your pull request every time you commit to the branch in the pull request. This way you can get the results of the tests, see it failed, fix it, push your change back to your branch, and the tests will run again. You

Re: How to setup if source code is composited by 2 repository

2013-08-05 Thread William Soula
If you are using svn:external property I believe it will just pull it automatically as svn externals are essentially treated like part of the repo. You could also install the Multiple SCMs Plugin: https://wiki.jenkins-ci.org/display/JENKINS/Multiple+SCMs+Plugin Will On 07/31/13 21:55, gMaiL

Re: Only trigger a build for a new tag in a Git repository

2013-08-05 Thread William Soula
Possible set the refspec to where the tags are. The git-fetch docs say -t will fetch all tags and then they give the refspec for that so that is probably what you need: refs/tags/:refs/tags/ https://www.kernel.org/pub/software/scm/git/docs/git-fetch.html Will On 08/01/13 05:50, Sebastian

Re: How to setup if source code is composited by 2 repository

2013-08-05 Thread Les Mikesell
On Mon, Aug 5, 2013 at 2:51 PM, William Soula william.so...@drillinginfo.com wrote: If you are using svn:external property I believe it will just pull it automatically as svn externals are essentially treated like part of the repo. You could also install the Multiple SCMs Plugin:

Upgrading hudson to jenkins : sonar plugin compatibility

2013-08-05 Thread hanasaki-jenkins
Upgrading from Hudson circa 2011 with the the Sonar plugin from that time to Jenkins current as of 8/2013 with its current Sonar plugin * How do we determine if the Jenkins current plugin is compatible with Sonar in use from 2011 or if a Sonar upgrade is to be forced in order to use the newest