Re: New build flow seems to break many things

2014-05-02 Thread nicolas de loof
2014-05-02 16:44 GMT+02:00 Les Mikesell lesmikes...@gmail.com: On Fri, May 2, 2014 at 8:15 AM, nicolas de loof nicolas.del...@gmail.com wrote: The DSL keyword implementation is just a dozen lines, so easy to re-implement and extend. The DSL itself is the least interesting part to me. I

Re: New build flow seems to break many things

2014-05-02 Thread nicolas de loof
That's not that simple 2014-05-02 17:45 GMT+02:00 Les Mikesell lesmikes...@gmail.com: On Fri, May 2, 2014 at 10:18 AM, nicolas de loof nicolas.del...@gmail.com wrote: The DSL itself is the least interesting part to me. I don't really care about the keyword names or the syntax of where

Re: New build flow seems to break many things

2014-05-01 Thread nicolas de loof
to handle that stuff or is build flow not the right way to go for this? Thanks, Grg On Thursday, May 1, 2014 1:42:11 AM UTC-4, Nicolas De loof wrote: yes, build-flow is desgined for orchestration, not as a regular job with SCM workspace and all that being said, as I can't find spare time

Re: New build flow seems to break many things

2014-04-30 Thread nicolas de loof
yes, build-flow is desgined for orchestration, not as a regular job with SCM workspace and all that being said, as I can't find spare time to invest on this plugin, feel free to take leadership on it and make it evolve your way 2014-05-01 0:13 GMT+02:00 Les Mikesell lesmikes...@gmail.com: On

Re: Difficulty to make Jenkins talk to Git

2014-02-13 Thread nicolas de loof
you should be able to use credentials in URL (legacy mode). Please attach full stacktrace 2014-02-12 21:27 GMT+01:00 Kevin Fleming (BLOOMBERG/ 731 LEXIN) kpflem...@bloomberg.net: You cannot include credentials in the repository URL. They must be specified in the 'credentials' area of the Git

Re: Build flow, workspace and aggregated results

2014-01-28 Thread nicolas de loof
build flow is an orchestration DSL, not a replacement for existing plugins (clone workspace, copy artifact, etc) so removal for workspace support. I don't understand what you try to aggregate using a shared workspace. Can you please add some details, with a typical execution chain ? 2014-01-28

Re: git commit hook executes job for a specific branch?

2014-01-20 Thread nicolas de loof
bitbucket jenkins hook only trigger a build, without any consideration for the branch being build. github hook pass git-plugin data on the incoming commit, so the git-plugin can filter them and trigger jobs according to configuration. so, this is a bitbucket issue. 2014/1/20 Lars Fischer

Re: Failing a Build Flow

2014-01-10 Thread nicolas de loof
can accomplish the goal at hand? Otherwise, I see no other option but to try Marc's groovy script. Thanks. On Jan 10, 2014, at 2:51 AM, nicolas de loof nicolas.del...@gmail.com wrote: I don't recommend such a fully programmatic approach, build-flow is designed as a DSL, admittedly

Re: Failing a Build Flow

2014-01-10 Thread nicolas de loof
a job had failed, to fail the build…not ignore failures. There is a guard/rescue for try/finally. Why not have a try/catch equivalent? That’s basically what I need, I think. On Jan 10, 2014, at 8:32 AM, nicolas de loof nicolas.del...@gmail.com wrote: This isn't supported at this time - I

Re: Failing a Build Flow

2014-01-10 Thread nicolas de loof
. On Jan 10, 2014, at 8:59 AM, nicolas de loof nicolas.del...@gmail.com wrote: ok, then the issue isn't an orchestration but resource one - this applies to all jobs on your instance, not just the ones from a specific flow - and you should use https://wiki.jenkins-ci.org/display/JENKINS/Locks

Re: Groovy Plugin VS Build Flow Plugin

2014-01-09 Thread nicolas de loof
build flow is an orchestration plugin, not a scripting one. The DSL is actually groovy based, but should be used only to trigger jobs. 2014/1/8 dev123 delber...@gmail.com I have installed the Build Flow Plugin: https://wiki.jenkins-ci.org/display/JENKINS/Build+Flow+Plugin making the Build

Re: Git Publisher Error

2013-12-30 Thread nicolas de loof
This has been fixed in master branch. Git plugin now set remote.url in working copy Le 17 déc. 2013 16:51, Slide slide.o@gmail.com a écrit : I recently upgraded my Git plugin and have started getting the following error: Pushing tag DB2013-12-17_05-35-37 to repo origin ERROR: Failed to

Re: Git Plugin Triggering Build Inaccurately

2013-11-22 Thread nicolas de loof
yes, I'm looking into possible changes in jenkins-core that would allow such a remote-polling to be used to detect potential changes, then use workspace to confirm changes actually have to get handled by a build. 2013/11/22 Mark Waite mark.earl.wa...@gmail.com Nicolas DeLoof just posted a hint

Re: Can't get Git access (stash) with credentials to work

2013-11-08 Thread nicolas de loof
does your git repo use sef-signed certificates ? can't you use ssh to access it ? 2013/11/8 Robert Krüger krue...@lesspain.de Hi, I just installed a fresh Jenkins 1.538 on Mac OS 10.8.5 and am trying to configure a Job that checks out from a Git repository hosted on a Stash server. The

Re: Can't get Git access (stash) with credentials to work

2013-11-08 Thread nicolas de loof
run jenkins with org.jenkinsci.plugins.gitclient.GitClient.untrustedSSL=true Anyway I recommend ssh 2013/11/8 Robert Krüger krue...@lesspain.de On Fri, Nov 8, 2013 at 10:41 AM, nicolas de loof nicolas.del...@gmail.com wrote: does your git repo use sef-signed certificates ? Yes ist does

Re: Can't get Git access (stash) with credentials to work

2013-11-08 Thread nicolas de loof
? Shouldn't I have the credentials for that domain in the list? It does work if I enter global credentials. I guess I misunderstood the domain concept in that context. On Fri, Nov 8, 2013 at 11:00 AM, nicolas de loof nicolas...@gmail.com wrote: run jenkins

Re: Can't get Git access (stash) with credentials to work

2013-11-08 Thread nicolas de loof
I don't understand why people host git over https with self-signed certificate. This don't make things secure, so why not just use http ? I only have used self-signed certificate for development/test of https webapps. Le 8 nov. 2013 16:33, nicolas de loof nicolas.del...@gmail.com a écrit : Add

Re: Can't get Git access (stash) with credentials to work

2013-11-08 Thread nicolas de loof
the password from going in plain text... as long as you have set up the trust of the self-signed cert correctly you know there is no MiM listening in... of course you could be MiM'd while setting up the initial trust... On 8 November 2013 15:36, nicolas de loof nicolas.del...@gmail.comwrote: I

Re: Can't get Git access (stash) with credentials to work

2013-11-08 Thread nicolas de loof
...@bloomberg.net At: Nov 8 2013 10:36:47 I don't understand why people host git over https with self-signed certificate. This don't make things secure, so why not just use http ? I only have used self-signed certificate for development/test of https webapps. Le 8 nov. 2013 16:33, nicolas de loof

Re: Best practices for handling Git credentials securely with Jenkins

2013-11-08 Thread nicolas de loof
. Since I was not asked for a password for encrypting the credentials database, I guess they are not strongly encrypted in the XML file where they are stored. Is there a more secure way of setting this up? In another thread Nicolas de Loof recommended SSH over HTTPS for such a setup. Is this one

Re: git polling is broken for me (ugh!)

2013-11-05 Thread nicolas de loof
think it might help people understand how the plugin works. In particular this piece of information helped me understand what happened when I upgraded. On 11/04/2013 09:29 PM, nicolas de loof wrote: no, polling occurs on last available workspace, that may be a slave. git-plugin 2.0 is using

Re: git polling is broken for me (ugh!)

2013-11-04 Thread nicolas de loof
no, polling occurs on last available workspace, that may be a slave. git-plugin 2.0 is using remote polling ls-remote by default, you force the legacy mode setting Force polling using workspace option BUT a simpler option is for you to install git on master ! 2013/11/4 Kevin Fleming (BLOOMBERG/

Re: git polling is broken for me (ugh!)

2013-11-04 Thread nicolas de loof
this was one goal for git-plugin 2.0 : remove the advanced, advanced section, and move all exotic options into extensions. 2013/11/4 Steve K steve.kerxha...@carestream.com Oh. OK. That section has changed. I'm accustomed to seeing an Advanced options button. Thanks. -- You received this

Re: Build Flow Plugin (pre-release 0.11): Change in SCM behavior?

2013-10-30 Thread nicolas de loof
Workspace support has indeed been removed Too many user use build-flow DSL as a groovy script console, that is another topic (- scriptler plugin) For your use case, if you need to poll SCM with a workspace, use another upstream job 2013/10/30 Mike Dougherty mike.doughe...@gmail.com I'm using a

Re: Build Flow Plugin + thread dump

2013-10-30 Thread nicolas de loof
Future.get() don't return the Build object after completion, have no idea what can get wrong 2013/10/30 Slide slide.o@gmail.com I have an issue with the Build Flow plugin in that once a job that is launched completes, the build flow never continues on. I've reduced my build flow to a

Re: Build Flow Plugin (pre-release 0.11): Change in SCM behavior?

2013-10-30 Thread nicolas de loof
scriptler is for groovy scripts build flow is (supposed to) offer a DSL to orchestrate job execution both make sense. Maybe you're looking for something in the middle 2013/10/30 Les Mikesell lesmikes...@gmail.com On Wed, Oct 30, 2013 at 2:35 AM, nicolas de loof nicolas.del...@gmail.com wrote

Re: gerrit-trigger / git 2.0 woe

2013-10-29 Thread nicolas de loof
This is fixed in HEAD, try using a SNAPSHOT build for git-client 2013/10/29 Nigel Magnay nigel.mag...@gmail.com So, doing some digging : I can no longer use 'native' git, it blows up with the eventual cause: Caused by:

Re: gerrit-trigger / git 2.0 woe

2013-10-29 Thread nicolas de loof
, 2013 at 10:39 AM, nicolas de loof nicolas.del...@gmail.com wrote: This is fixed in HEAD, try using a SNAPSHOT build for git-client 2013/10/29 Nigel Magnay nigel.mag...@gmail.com So, doing some digging : I can no longer use 'native' git, it blows up with the eventual cause: Caused

Re: Git 2.0 Plugin wont work with HTTP repos

2013-10-29 Thread nicolas de loof
Created https://issues.jenkins-ci.org/browse/JENKINS-20326 for this, and committed a fix release in progress 2013/10/29 Tom Arra tar...@gmail.com I have Jenkins running with a Atlassian Stash server all running behind my corporate firewall. Everything was fine but when I upgraded Jenkins

Re: Jenkins Git plugin or Jenkins Git Client plugin on Mac not working

2013-10-29 Thread nicolas de loof
What type of credentials did you created ? Did you set them for a domain ? credentials in URL should still work anyway. Is there a stacktrace using this URL-with-credentials as git scm url ? 2013/10/29 schujk sch...@gmail.com First time working with a mac...I feel I'm missing something

Re: Problem with git plugin 2.0

2013-10-24 Thread nicolas de loof
please open a jira issue with full stack trace 2013/10/24 Mark Waite mark.earl.wa...@gmail.com I cleaned and rebuilt without issue. I'm sure that doesn't help you much, but it is one more data point. On Thu, Oct 24, 2013 at 3:32 PM, Jon Schewe jpsch...@mtu.net wrote: Have you tried

Re: Git plugin: Failed to connect to repository ...password with special characters okay?

2013-10-14 Thread nicolas de loof
@ in URL indeed has to be encoded as %40, but I guess there's many places where such encoding is not handled correctly. try git-plugin 2.0, that introduce support for http credentials. I guess it better support such encoding issue. 2013/10/14 Scott Danzig sdan...@gmail.com I'm trying to add

Re: Git plugin, problem cloning

2013-10-01 Thread nicolas de loof
according to stacktrace, error occurs in org.jenkinsci.plugins. gitclient.Git.getClient(Git.java:65) running closure on slave, that fail to setup some reference to Jenkins master (make sense) but I can't explain why - I don't see such a reference.

Re: Build Flow Plugin and artifacts management in the DSL

2013-09-19 Thread nicolas de loof
build flow is a flightweight task, supposed to orchestrate jobs, not to archive content or manage a workspace. It can be triggered by commit hooks, best option. 2013/9/19 Les Mikesell lesmikes...@gmail.com On Thu, Sep 19, 2013 at 12:16 AM, nicolas de loof nicolas.del...@gmail.com wrote: I

Re: Build Flow Plugin and artifacts management in the DSL

2013-09-19 Thread nicolas de loof
2013/9/19 Les Mikesell lesmikes...@gmail.com On Thu, Sep 19, 2013 at 10:41 AM, Schalk W. Cronjé ysb...@gmail.com wrote: The very first time I read about Build Flow I also thought it to be a DSL for specifying complex steps in a job. Maybe it was wishful thinking, because that seems to be

Re: Build Flow Plugin and artifacts management in the DSL

2013-09-19 Thread nicolas de loof
2013/9/19 Les Mikesell lesmikes...@gmail.com On Thu, Sep 19, 2013 at 12:36 PM, nicolas de loof nicolas.del...@gmail.com wrote: The very first time I read about Build Flow I also thought it to be a DSL for specifying complex steps in a job. Maybe it was wishful thinking, because

Re: Build Flow Plugin and artifacts management in the DSL

2013-09-18 Thread nicolas de loof
this is a voluntary limitation. Even flow uses groovy, it's supposed to be a DSL, not a system groovy script. Use scriptler/groovy plugin/etc if you want to do such thing 2013/9/18 Schalk Cronjé ysb...@gmail.com With Build Flow Plugin you can only access Groovy modues that Jenkins System

Re: Build Flow Plugin and artifacts management in the DSL

2013-09-18 Thread nicolas de loof
, 2013 at 12:38 PM, nicolas de loof nicolas.del...@gmail.com wrote: this is a voluntary limitation. Even flow uses groovy, it's supposed to be a DSL, not a system groovy script. Use scriptler/groovy plugin/etc if you want to do such thing OK, but how? I don't see the option to do another

Re: Build Flow Plugin and artifacts management in the DSL

2013-09-18 Thread nicolas de loof
build flow don't have a workspace, so no place to store child artifacts. you could trigger a final job to collect other ones artifacts using copy-artifact 2013/9/18 Les Mikesell lesmikes...@gmail.com On Wed, Sep 18, 2013 at 2:37 PM, nicolas de loof nicolas.del...@gmail.com wrote: not inside

Re: Build Flow Plugin and artifacts management in the DSL

2013-09-18 Thread nicolas de loof
I removed workspace in HEAD, previous version of plugin extend a classic job 2013/9/18 Les Mikesell lesmikes...@gmail.com On Wed, Sep 18, 2013 at 3:06 PM, nicolas de loof nicolas.del...@gmail.com wrote: build flow don't have a workspace, so no place to store child artifacts. you could

Re: Build Flow Plugin and artifacts management in the DSL

2013-09-16 Thread nicolas de loof
copy artifact can be used with a fixed build selection passed as parameter afaik so just have to get build number from previously executed jobs and pass as parameter to deploy 2013/9/16 Emmanuel Boudrant emmanuel.boudr...@gmail.com I am not sure it will work, copy Artifact plugin is going to

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

2013-08-30 Thread nicolas de loof
flow build that the post build step of processing the test results will get them all. Any thoughts on how to get those files back to the master? On Thursday, January 3, 2013 2:30:31 AM UTC-5, Nicolas De loof wrote: sure, rescue handle whatever happens in gard block, that has no restriction

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

2013-08-30 Thread nicolas de loof
30, 2013 at 9:22 AM, nicolas de loof nicolas.del...@gmail.com wrote: 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

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 slide.o@gmail.com 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

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

2013-08-30 Thread nicolas de loof
** ** *From:* jenkinsci-users@googlegroups.com [mailto: jenkinsci-users@googlegroups.com] *On Behalf Of *nicolas de loof *Sent:* 30 August 2013 15:52 *To:* jenkinsci-users@googlegroups.com *Subject:* Re: Build flow plugin: How to copy results from downstream jobs ** ** I don't want

Re: Request for GIT commit rights

2013-08-29 Thread nicolas de loof
I've added you to corresponding repositories 2013/8/29 Edward Hurst-Frost edw...@hurst-frost.net Hi, I already have a few hosted plugins, which up to now I've been maintaining over SVN, but just seen this is deprecated so I'd like to switch to GIT. My jenkins-ci.org username is cafebabe.

http://updates.jenkins-ci.org/ DOWN

2013-08-19 Thread nicolas de loof
Who can fix this ? -- 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...@googlegroups.com. For more options, visit

Re: http://updates.jenkins-ci.org/ DOWN

2013-08-19 Thread nicolas de loof
and is UP now 2013/8/19 nicolas de loof nicolas.del...@gmail.com Who can fix this ? -- 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

Re: Build Flow - dynamic parameter question

2013-08-16 Thread nicolas de loof
you can't. By nature, dynamic parameters are computer by the job to use them, can't be force to a fixed value by the invoker. 2013/8/16 Bob Bick bb...@netjets.com Hi, ** ** A build flow job invokes job X that has a dynamic parameter Y. The build flow job also has the dynamic

Re: Build Flow Plugin: run build flow job on commit

2013-08-13 Thread nicolas de loof
no, you have to define a job to get triggered by SCM then this job will trigger the build flow 2013/8/12 Denis Belorunov belorun...@gmail.com I want to start flow when there is commit into CVS repository. But I do not really want to setup CVS as SCM for my flow job, as checkout takes

Re: interogate other buildflow runs?

2013-08-08 Thread nicolas de loof
if multiple FlowRun are waiting on the same block. */ ** ** /James ** ** *From:* jenkinsci-users@googlegroups.com [mailto: jenkinsci-users@googlegroups.com] *On Behalf Of *nicolas de loof *Sent:* 28 June 2013 22:43 *To:* jenkinsci-users@googlegroups.com *Subject:* Re

Re: Build Flow Plugin - reporting capability

2013-08-07 Thread nicolas de loof
you probably can use jenkins REST API to retrieve the list of executed jobs from a build flow execution, not sure yet 2013/8/6 Bob Bick bb...@netjets.com Hi, ** ** The Jenkins Build Flow Plugin is replacing our “massive” home grown build system. ** ** A couple of times a

Re: Build Flow Plugin - reporting capability

2013-08-07 Thread nicolas de loof
to just have a the users run a groovy script with text output. From: jenkinsci-users@googlegroups.com [mailto: jenkinsci-users@googlegroups.com] On Behalf Of nicolas de loof Sent: Wednesday, August 07, 2013 2:56 AM To: jenkinsci-users@googlegroups.com Subject: Re: Build Flow Plugin - reporting

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 (

Re: build flow plugin and scm changes

2013-07-14 Thread nicolas de loof
build flow orchestrate job execution, it don't handle scm-triggers. When flow is started, all builds involved will run is you have to exclude some jobs based on scm commit, do it BEFORE you call build(job) 2013/7/13 Thomas Fields thomasmfie...@gmail.com Hi there, The build flow plugin looks

Re: build flow plugin and scm changes

2013-07-14 Thread nicolas de loof
I don't have such a sample, need to duplicate some way the exclusion filter used by SCM plugin build flow don't us SCM triggers, so can't benefit advanced feature they provide 2013/7/14 Thomas Fields thomasmfie...@gmail.com Thanks for the reply. is you have to exclude some jobs based on scm

Re: Quick q regarding: Build Flow DSL + Rebuild plugin.

2013-07-01 Thread nicolas de loof
2013/7/1 444 lom...@gmail.com I want to run a number of builds in parallel, ignoring all build statuses (failed, aborted, etc). I have the following set up: parallel ( { ignore(ABORTED) { build(BUILDA) } } , { ignore(ABORTED) { build(BUILDB) } } ) Lets

Re: interogate other buildflow runs?

2013-06-28 Thread nicolas de loof
this isn't possible, this require state management between flows execution that build-flow plugin don't offer 2013/6/28 James Nord (jnord) jn...@cisco.com Hi all, ** ** I would like to have a buildflow job “flowjob” that kicks of job1, job2 job3 sequentially. ** ** The

Re: interogate other buildflow runs?

2013-06-28 Thread nicolas de loof
@googlegroups.com] *On Behalf Of *nicolas de loof *Sent:* 28 June 2013 17:55 *To:* jenkinsci-users@googlegroups.com *Subject:* Re: interogate other buildflow runs? ** ** this isn't possible, this require state management between flows execution that build-flow plugin don't offer ** ** 2013/6

Re: Modifying Git branch dynamically

2013-06-27 Thread nicolas de loof
sole option I can see is to set branch specifier to $OVERRIDE_BRANCH with default value to develop So can't give advise without the long story ;) 2013/6/27 Bob Bick bb...@netjets.com Hi, ** ** *Background* ** ** Our Jenkins build job uses Git with a default branch specifier set

Re: Modifying Git branch dynamically

2013-06-27 Thread nicolas de loof
(“develop”). ** ** *From:* jenkinsci-users@googlegroups.com [mailto: jenkinsci-users@googlegroups.com] *On Behalf Of *nicolas de loof *Sent:* Thursday, June 27, 2013 11:58 AM *To:* jenkinsci-users@googlegroups.com *Subject:* Re: Modifying Git branch dynamically ** ** sole option I can

Re: Modifying Git branch dynamically

2013-06-27 Thread nicolas de loof
-commit trigger. Sorry that was not clear. ** ** *From:* jenkinsci-users@googlegroups.com [mailto: jenkinsci-users@googlegroups.com] *On Behalf Of *nicolas de loof *Sent:* Thursday, June 27, 2013 12:30 PM *To:* jenkinsci-users@googlegroups.com *Subject:* Re: Modifying Git branch dynamically

Re: BuildFlow plugin and @Grab

2013-06-17 Thread nicolas de loof
Even you find some way to get this to work I wouldn't recommend. build-flow DSL is for sure implemented in groovy, but this is an orchestration DSL, for this use case use the extension point with a dedicated plugin to contribute such features 2013/6/17 Schalk Cronjé ysb...@gmail.com Has anyone

Re: BuildFlow plugin and @Grab

2013-06-17 Thread nicolas de loof
up, especially given AFAIK documentation being pretty sparse on the topic. On Monday, 17 June 2013 10:00:39 UTC+1, Nicolas De loof wrote: Even you find some way to get this to work I wouldn't recommend. build-flow DSL is for sure implemented in groovy, but this is an orchestration DSL

Re: what is the difference between Jenkins Built in LDAP and Jenkins LDAP Plugin

2013-04-03 Thread nicolas de loof
LDAP feature has been extracted into a dedicated plugin, but is packaged with default jenkins distribution 2013/4/3 phani malepati phani.malep...@gmail.com I am confused with Jenkins LDAP Plugin and the LDAP that already comes with jenkins without installing any plugin. Does someone know

Re: AD Plugin Issues

2013-03-27 Thread nicolas de loof
Hi Cory, I hope you will get desired assistance here Just want to let jenkins-users members here know that enterprise support tried to help you to diagnose this issue, but not being a customer with an active support subscription we didn't went further. Just want to make this clear as I'm doing my

Re: GIT Local subdirectory for repo (optional)

2013-03-23 Thread nicolas de loof
this option is available in advanced section 2013/3/23 Bukama buk...@omega-day.com Hi, I just installed a freshly clean version of Jenkins (beacuse migtrating from Hudson to Jenkins) including the GIT-Plugins. When configurating the GIT-repositories I saw that theres no input field for Local

Re: Build flow plugin does not visualize the flow correctly

2013-03-21 Thread nicolas de loof
flow visualization is still early stage, and probably need some love to address complex graphs. We are extracting it into a more general purpose plugin (build graph view) so it can both handle flows and classic jenkins downstream chains 2013/3/21 Pawel Wrobel pawel.wro...@nsn.com Hi, I have an

Re: Build of first commit on git branch does not show changes

2013-03-21 Thread nicolas de loof
git-plugin maintain the last build per branch, but dones not try to discover when a branch was created compared to previous builds. Not trivial to implement 2013/3/21 Brian Jones caneri...@gmail.com Is it possible to get Jenkins to detect and report Changes for the first commit on a new

Re: GIT stopped working after upgrading the plugin to version 1.3.0

2013-03-21 Thread nicolas de loof
as a temporary workaround run jenkins with org.jenkinsci.plugins.gitclient.Git.useCLI=true I'm disappointed with JGit, and probably will revert git-client to use git-cli by default, even this has some serious drawbacks, until JGit gets more mature. 2013/3/21 Peter Miklosko peter.b...@gmail.com

Re: GIT stopped working after upgrading the plugin to version 1.3.0

2013-03-21 Thread nicolas de loof
#comment-175804 That works just great for me now. On Thu, Mar 21, 2013 at 8:40 AM, nicolas de loof nicolas.del...@gmail.com wrote: as a temporary workaround run jenkins with org.jenkinsci.plugins.gitclient.Git.useCLI=true I'm disappointed with JGit, and probably will revert git-client

Re: GIT stopped working after upgrading the plugin to version 1.3.0

2013-03-21 Thread nicolas de loof
There is a bunch of them in bugtracker. I've just released git-client 1.0.5, that will use git-cli by default. will still maintain a JGit implementation, and try to get unit test to reproduce those various issues, but probably will have to wait for next major JGit version - JGit for sample don't

Re: GIT stopped working after upgrading the plugin to version 1.3.0

2013-03-21 Thread nicolas de loof
right, there is no LTS concept for plugins 2013/3/21 Aldo Brucale bruc...@gmail.com So also the LTS version of Jenkins pulls the latest version of the plugins. I thought it was safe to keep them updated... On Thursday, 21 March 2013 17:03:29 UTC+1, Nicolas De loof wrote: There is a bunch

Re: GIT and Jenkins

2013-03-07 Thread nicolas de loof
to access repository. 2013/3/7 nicolas de loof nicolas.del...@gmail.com does the clone run on master or some slave ? this ls-remote command is executed on master, maybe you just miss the adequate ssh key there. Long term plan is to integrate ssh-credentials-plugin in git-plugin to manage

Re: GIT and Jenkins

2013-03-06 Thread nicolas de loof
does the clone run on master or some slave ? this ls-remote command is executed on master, maybe you just miss the adequate ssh key there. Long term plan is to integrate ssh-credentials-plugin in git-plugin to manage this. 2013/3/7 Jeff predato...@gmail.com I thought I asked this and fixed it

Re: Custom workspace build flow plugin?

2013-03-01 Thread nicolas de loof
Hi, build-flow is not supposed to access a workspace, it's designed to trigger and orchestrate other jobs. You shouldn't use it to get source code from SVN and read it from the DSL script, I don't guarantee this will be supported by future versions. 2013/3/1 dhyix dhe...@gaic.com I don't see

Re: How to persuade Ubuntu Linux Jenkins to install Git

2013-02-26 Thread nicolas de loof
then see jenkins system configuration and configure your git installation path when required. Should not be necessary with standard installations that set git as /usr/bin/git 2013/2/26 Mark Waite markwa...@yahoo.com I think you may not have realized that you need two plugins to enable Git SCM

Re: Git client plugin 1.0.2 broken

2013-02-20 Thread nicolas de loof
git plugin 1.2.0 was released to match this git-client release, should be available in update center now ( https://updates.jenkins-ci.org/download/plugins/git/) sorry for the inconvenience of this set of buggy git-plugin releases, refactoring I made had far more impacts I expected 2013/2/20

Re: Gerrit Trigger, Jenkins GIT Plugin, and GerritTriggerBuildChooser

2013-02-18 Thread nicolas de loof
I'm working on a fix to avoid such regression but stil allow current refactoring in git plugin stay tunned 2013/2/19 Bo Shi bs1...@gmail.com Thanks for digging that up. I'd been googling downgrading on gerrit+jenkins and of course should have searched using broader terms. On Mon, Feb 18,

Re: How does Jenkins checkout sources from svn to the slaves?

2013-02-07 Thread nicolas de loof
your svn client uses native libraries to support ssl, subversion plugin uses svnkit + java implementation for ssl (trilead), so what prevent your svn client to work with ssl has no impact on jenkins. 2013/2/7 Mehdi Hayani hayani.mehdi...@gmail.com Hi, I really have no idea on how SSL is

Re: Perform a single svn checkout in a multi-configuration project

2013-02-06 Thread nicolas de loof
2013/2/6 Fernando Cerezal krypto...@gmail.com 2013/2/5 Les Mikesell lesmikes...@gmail.com: On Tue, Feb 5, 2013 at 6:33 AM, Fernando Cerezal krypto...@gmail.com wrote: Is there any way to perform an unique checkout to workspace? Multi-configuration jobs are generally used to build in

Re: Build Flow Plugin: Ensuring jobs operate on the same Git revision

2013-02-05 Thread nicolas de loof
if you configure the build-flow itself to be triggered by SCM you may pass GIT_COMMIT to triggered jobs, never tried this. I expected you could also retrieve this commit revision from SCMRevisionState action, but git-plugin don't use this API (sic) 2013/2/4 Johannes Schirrmeister

Re: Build Flow Plugin: Ensuring jobs operate on the same Git revision

2013-02-05 Thread nicolas de loof
...?) On Tue, Feb 5, 2013 at 11:04 AM, nicolas de loof nicolas.del...@gmail.com wrote: if you configure the build-flow itself to be triggered by SCM you may pass GIT_COMMIT to triggered jobs, never tried this. I expected you could also retrieve this commit revision from SCMRevisionState action

Re: Build Flow Modularization

2013-02-05 Thread nicolas de loof
so, you are running a meta-flow plugin ! there is no short term plan for the build-flow plugin to offer this level of flexibility. I plan to make the DSL source an extension point, so user can either write the groovy DSL (as they do today) or use a graphical designer (with limited capabilities,

Re: How does Jenkins checkout sources from svn to the slaves?

2013-02-05 Thread nicolas de loof
subversion plugin uses svnkit, not native svn client 2013/2/5 Mehdi Hayani Soujaa hayani.mehdi...@gmail.com Hi Team, Does any one know how Jenkins checkout source code from SVN repository to slaves? I'm posting this question because we are facing a case which has demonstrated the opposite

Re: [git plugin] 'git show' command extremely slow

2013-01-28 Thread nicolas de loof
would be far more efficient for you to setup a post-commit hook, poling must die :P 2013/1/28 rdohe...@smugmug.com For the past few weeks our git checkouts from github have gotten slower and slower (now resulting in updates for one small commit taking 1 minute and multiple commit updates

Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread nicolas de loof
just use the copy-artifact plugin to copy from upstream build / pass fingerprints as you would do without build flow to orchestrate jobs 2013/1/17 Åsmund Østvold asmu...@gmail.com I am investigating the build flow plugin and have hit a issue I am not able to solve. What I want to able to copy

Re: copy aritfacts between builds with build flow plugin

2013-01-17 Thread nicolas de loof
:23 PM, nicolas de loof nicolas.del...@gmail.com wrote: just use the copy-artifact plugin to copy from upstream build / pass fingerprints as you would do without build flow to orchestrate jobs 2013/1/17 Åsmund Østvold asmu...@gmail.com I am investigating the build flow plugin and have hit

Re: Jenkins Usage Question - Java requirement

2013-01-09 Thread nicolas de loof
ssh slaves will install a JVM when none is found, but this assumes there's one for the target architecture. Which OS are you running on slave ? 2013/1/9 C M cmanalys...@gmail.com Sigh. Deep down, I was afraid of this...unfortunately, we don't have the option of switching to a more modern

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

2013-01-02 Thread nicolas de loof
Guard + rescue Le 2 janv. 2013 02:11, Patrick petrikvanderve...@gmail.com a écrit : Ok I'm going to have to amend this answer. My idea of having a separate job at the end to gather the results would work if it wasn't for the fact that the build flow plugin kills the build as soon as one of the

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

2013-01-02 Thread nicolas de loof
use gard+rescue so you can execute a post-job even when some jobs are unstable 2013/1/2 Patrick petrikvanderve...@gmail.com Ok I'm going to have to amend this answer. My idea of having a separate job at the end to gather the results would work if it wasn't for the fact that the build flow

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

2013-01-02 Thread nicolas de loof
: com.cloudbees.plugins.flow.FlowDelegate.rescue() is applicable for argument types: (Script1$_run_closure1_closure3) values: Removing the guard clause made it work. So I'm guessing guard can only handle 1 item? Thanks Petrik On Wed, Jan 2, 2013 at 10:16 PM, nicolas de loof nicolas.del...@gmail.com

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

2013-01-01 Thread nicolas de loof
I recommend to avoid such scripting in the flow DSL, that is only designed to manage orchestration, not to replace plugins/job logic use copy-artifact plugin to get last build / upstream / fingerprint file from upstream job Future version of build-flow may implement some helper methods to pass

Re: Build-flow plugin - do not stop when build is failing

2012-12-21 Thread nicolas de loof
This is not yet implemented, and was intentional. I don't thin ignoring job result is a good practice. Anyway as much users asked for it I may introduce an option to ignore build result, something like : build(jobA).ignore(FAILURE) 2012/12/21 Sebastian Wolff sebastian.wo...@dynardo.at Hello

Re: Need help on using Jenkins Git Plugin in my java application

2012-12-20 Thread nicolas de loof
nothing specific here, just configure SCM with your git repository, and a poll scm trigger to schedule a poll every 2 minutes for such a quick poll, a better option is for you to setup a git post-commit hook to immediately trigger a new build 2012/12/20 Santosh Kumar K kopp@gmail.com Hi,

Re: Build flow plugin parallel builds are not parallel

2012-12-06 Thread nicolas de loof
Do you have this job configured to allow concurrent execution ? this is not a restriction for the build-flow plugin : this one only schedule jobs, but execution depends on jenkins build queue management and related job configuration 2012/12/7 Glenn McElhoe gmcel...@gmail.com I noticed this

Re: Build flow plugin: fails build if there are unstable builds

2012-11-23 Thread nicolas de loof
the error is ugly, but the behavior is as expected. A non successful step in the flow will interrupt the execution. The DSL could probably be extended to ignore some build results, something like : build( B ).ignore( UNSTABLE ) contributors are welcome :) 2012/11/22 Egle

Re: Build flow parallel execution issue

2012-11-12 Thread nicolas de loof
:06 UTC+1, Nicolas De loof wrote: This is not expected. First unstable/failed build in a sequence is supposed to stop the execution. what version of the plugin are you using ? I committed an attempt to sanitize thread-safety in 0.5 what OS is master running on ? 2012/9/21 Reuben Gow geub

Re: Build flow parallel execution issue

2012-11-12 Thread nicolas de loof
It's a question of spare time, so can't tell ... 2012/11/12 Reuben Gow geuben...@gmail.com Any chance of getting a build with this fix in? I will happily test it for you. On Monday, 12 November 2012 10:26:51 UTC, Nicolas De loof wrote: there's a permission issue with parallel() I have

Re: Build Flow Plugin: No signature of method FlowDelegate.parallel()

2012-11-10 Thread nicolas de loof
parallel expect a set of closures, each closure being ran in a separate thread : parallel( { build(A) }, { build(B) } ) 2012/11/9 r2_ rle...@dailyvoice.com Hey, I got a really cool looking error using Build Flow Plugin. The flow is just 2 parameterized jobs which should run in

<    1   2   3   >