Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Has anybody successfully configured Teamcity to monitor, extract, and build from GitHub?

I can seem to figure how where and how to configure the SSH keys for Teamcity. I have Teamcity running as a system service, under a system account. So where does Teamcity stash its SSH configuration?

EDIT

To get this to work, I needed to stop the agent from running under a system account.

share|improve this question

4 Answers

up vote 15 down vote accepted

Ok... I got this to start working on my Windows server. Here are the steps I took to configure TeamCity 4.5 Professional:

  1. Downloaded the JetBrains Git VCS Plugin
  2. Copied the downloaded zip file to .BuildServer\plugins
  3. In the Administration > Edit Build Configuration > Edit VCS Root configuration screen, I selected "Git (JetBrains)"
  4. Entered my Clone Url from the GitHub project page
  5. Set for authentication method "Default Private Key" -- this is IMPORTANT
    1. The TeamCity BuildAgent should be running as a standard user, with the SSH installation configured properly for that user.
    2. Follow the GitHub SSH directions for SSH configuration
  6. Leave the username blank. This should already be provided for in your GitHub clone URL
share|improve this answer
Did you ever got it to work with TeamCity 5.0 – azamsharp Jan 20 '10 at 21:35
I've got this working with TeamCity 5.1.2 using Private Key Authentication. The user that the Build Agent is running as has a private key in its home directory. Authentication didn't work until I left the username blank. I thought I would have to specify it because my clone URL belonged to another user, but I assume it is using the user that the Build Agent is running as. – Martin Owen Jul 14 '10 at 11:54
4  
Be aware that this doesn't work if you're using SSH keys generated in PuttyGen - we spent quite a while messing around, before regenerating a key using ssh-keygen in GitBash which then worked immediately. – dwynne Aug 24 '10 at 14:16
Also doesn't help if you haven't stored the keys in the standard SSH directory on C:\.ssh\config\. There doesn't appear to be a setting available to tell TeamCity it is elsewhere. – Junto Feb 7 '11 at 20:39
Was anyone able to get this working when TeamCity agent is running as local-system (whose profile is c:\windows\system32\config\systemprofile) and with a key (generated from ssh-keygen) with a non-standard name? According to their docs (confluence.jetbrains.net/display/TCD5/Git+%28JetBrains%29) TeamCity wants to look in <USER_HOME>\.ssh\config for the ssh config file linux.die.net/man/5/ssh_config but then I didn't get IdentityFile in there to work (not sure if it wants windows or posix paths...). – Peter Mounce Nov 4 '11 at 23:09

You may need a third party plugin like this

share|improve this answer
6  
For future readers, that plugin was deprecated when JetBrains created an official one for git support that ships in TeamCity. – Peter Mounce Nov 4 '11 at 23:06

for private key, username must be blank.

share|improve this answer

I got "Default Private Key" to work with agents running as the SYSTEM user on Windows. For me, the answer was having the identity file at

C:\Windows\SysWOW64\config\systemprofile\.ssh\id_rsa

instead of at

C:\Windows\System32\config\systemprofile\.ssh\id_rsa

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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