Git Clone via SSH using Jenkins on Windows

The cleanest way to use Jenkins on Windows is to use the Jenkins Installer which installs Jenkins as a Windows Service.

That works fine, but of course the first challenge you face is cloning your Git repo over SSH (the default for the Jenkins Git plugin).

I’ll assume you have done the following:

  • Installed Git Client
  • Created SSH Keys and ensured that you can successfully clone a repo from your Git Bash (running as current user).

    Note: In theory you should not use passwordless keys as anybody obtaining your key will have access to your account. However for Jenkins you cannot have a password as the Job would hang when attempting to clone. From Git Bash this problem is solved using ssh-agent but this won’t work in Jenkins as we are using the Git plugin and not the shell.

    Bottom line – for Jenkins use a passwordless key – you can mitigate the risk by having a dedicated Jenkins Git User and only allowing them pull access.

  • Set up the Git plugin in Jenkins via ‘Manage Jenkins’ and point it to the Git cmd file on the system, as in the screenshot below:

jenkins_git_plugin

Now we get to the tricky part. When Jenkins runs as a Windows Service it does not run under a normal user account, it runs under the “Local System Account”. Hence even though you have Git Clone working as the current user it will fail in Jenkins.

To solve this problem we need to put our private ssh key in the correct location for the Local System Account.

First of all we need to find out where this user’s home directory is, since it will not exist under C:\Users…

  • Download PSTools
  • Extract to a conventiant location and using a command prompt navigate to that location (or add to path if you prefer)
  • Start the PsExec tool by running:
PsExec.exe -i -s cmd.exe
  • Now we need to find out where this user’s home directory is:
echo %userprofile%
  • For me this location was:
C:\Windows\system32\config\systemprofile
  • Now you can open Git Bash within this shell by running the following command:
"C:\Program Files\Git\bin\sh" –login –i
  • You can copy your existing private key into the correct location for the Local System User, for me this was something like the following:
cd ~
cp /c/Users/noteits/.ssh/id_rsa ~/.ssh/
  • Finally you can test that you can successfully authenticate to Github as the Local System User:
ssh -T git@github.com
  • If all is successful you should see the usual message:
Hi noteits! You've successfully authenticated, but GitHub does not provide shell access.

All that’s left to do now is test from Jenkins.