I'd like for Jenkins to automagically fetch data from my private repository hosted on Github. But I have no idea how to accomplish that task.. Tried the documentation, generating ssh-key for jenkins user and all what I can see is: "unable to clone the repo". I've checked URLs - they are valid.

Any clues, maybe you know some docs/blogs/whatever which are describing this kind of stuff?

link|improve this question

70% accept rate
I answer this a similar question, you can see the answer in the link below: jenkins & GitHub – user965062 Nov 15 '11 at 21:39
feedback

4 Answers

up vote 14 down vote accepted

Perhaps GitHub's support for deploy keys is what you're looking for? To quote that page:

When should I use a deploy key?

Simple, when you have a server that needs pull access to a single private repo.

If that's what you're already trying and it doesn't work, you might want to update your question with more details of the URLs being used, the names and location of the key files, etc.

link|improve this answer
Yeah - already managed to solve my problem - I've added ssh key directly to the repo (as deploy key) and not to the account as before. – bx2 Mar 6 '11 at 18:47
2  
Bur how do you created a key for jenkins? – Thiago Diniz Jun 10 '11 at 13:55
1  
The "deploy key" is just any old SSH key. What I did is run ssh-keygen as the user Jenkins runs as ("jenkins" on my Ubuntu server). I then added ~jenkins/.ssh/id_rsa.pub to the deploy keys section of the repository on github. – Adam Monsen Jul 6 '11 at 21:13
feedback

One thing that got this working for me is to make sure that github.com is in ~jenkins/.ssh/known_hosts.

link|improve this answer
This fixed the issue I was having where after setting up a key pair, a git push was failing – chrisbunney Nov 18 '11 at 16:12
feedback

If you need Jenkins to access more then 1 project you will need to:
1. add public key to one github user account
2. add this user as Owner (to access all projects) or as a Collaborator in every project.

Many public keys for one system user will not work because GitHub will find first matched deploy key and will send back error like "ERROR: Permission to user/repo2 denied to user/repo1"

http://help.github.com/ssh-issues/

link|improve this answer
The answer about using a deploy key works great if you just have a single repository. But when you want a CI server to build projects across multiple repos you're immediately in the position of managing several sets of keys (one pair per repo) and it becomes much easier to take the approach listed in this answer. – cclark Feb 1 at 21:40
feedback

An alternative to the answer from sergey_mo is to create multiple ssh keys on the jenkins server, as documented by chalien on githib:

https://github.com/chalien/Multiple-public-ssh-key-github

(Though as the first commenter to sergey_mo's answer said, this may end up being more painful than managing a single key-pair.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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