I have msysgit installed with OpenSSH option. In Git bash, I can run ssh-agent, and it manages the passphrase for my ssh key. Is it possible for the Hudson Git plugin to use ssh-agent? Currently, it hangs when trying to clone, no doubt waiting for the passphrase to be entered.

Thanks!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

As mentioned in "Problem with Hudson + Git + Gitosis on windows", you need to make sure the Hudson job does set first a %HOME% environment variable.
That value must refer to the directory where you can find:

.ssh
  id_rsa     # private key
  id_rsa.pub # public key
link|improve this answer
Thanks, VonC. I've set %HOME% as a user environment variable. Wouldn't it pick this up? Also, as an experiment, I generated a new ssh key with blank passphrase, and hudson is still hanging. If I run the hudson git command from the command line, it succeeds in cloning the repo. – Jacko Jul 6 '10 at 19:25
@Jacko: it needs to be setup from the Hudson configuration settings to be extra sure. That would explain why Hudson jobs hang while command line Git commands pass. – VonC Jul 6 '10 at 19:39
3  
Thanks you, sir!! I added a %HOME% parameter, wiki.hudson-ci.org/display/HUDSON/Parameterized+Build, and now it is cloning. Thanks again!!!!!! – Jacko Jul 6 '10 at 20:40
@Jako: glad to hear it worked for you :) – VonC Jul 6 '10 at 20:42
I cannot vote this answer up high enough. After HOURS of messing around with it this was the fix. – Ryan Eastabrook Apr 26 '11 at 21:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.