when i do build in Jenkins, it fails with this error. Any idea?

ERROR: Error cloning remote repo 'origin' : Could not clone git@github.com:test/test.git

ERROR: Cause: Error performing command: git clone --progress -o origin

git@github.com:test/test.git /var/lib/jenkins/jobs/test/workspace Command "git clone --progress -o origin git@github.com:test/test.git /var/lib/jenkins/jobs/test/workspace" returned status code 128: Initialized empty Git repository in /var/lib/jenkins/jobs/test/workspace/.git/

No protocol specified

(ssh-askpass:801): Gtk-WARNING **: cannot open display: :0.0 Host key verification failed. fatal: The remote end hung up unexpectedly

link|improve this question
I answer this a similar question, you can see the answer in the link below: <br> jenkins & GitHub <br> <br> Thanks you, <br> gustavo – user965062 Nov 15 '11 at 21:44
feedback

2 Answers

Host key verification failed. - make sure your SSH keys are setup properly.

http://help.github.com/linux-set-up-git/

After you are done with that,

ssh git@github.com

should give you a welcome message ( which also says no shell access ) from GitHub

link|improve this answer
ssh git@github.com succeeds. – Sam May 23 '11 at 22:31
even "git clone git@github.com:test/test.git" works when I do "sudo git clone git@github.com:test/test.git" it fails. – Sam May 23 '11 at 22:31
1  
What user are you doing that as? The jenkins user? – Mando Escamilla May 23 '11 at 22:49
the system user. – Sam May 23 '11 at 23:39
1  
Why are you sudoing? Sudo changes the user, and thus the keys used. You probably should not be using sudo. – Tekkub May 23 '11 at 23:54
show 4 more comments
feedback

Sam, You need to copy your private ssh key into the .ssh folder beneath Jenkins. Something like (on Ubuntu Lucid): /var/lib/jenkins/.ssh

link|improve this answer
You'll need to chown the files you copy into /var/lib/jenkins. In addition, you may want to copy your .gitconfig file into /var/lib/jenkins – jwriteclub Oct 24 '11 at 8:26
5  
Better yet, don't put your private keys in other places than your own home directory. Create a new set of keys for jenkins, and give the jenkins public key to github. – bjarkef Nov 9 '11 at 13:13
feedback

Your Answer

 
or
required, but never shown

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