Jenkins Windows Slave with Git
There are some articles out there about setting up Jenkins slaves on Windows. This is one more, with a bunch of information about configuring Git. The documentation for setting up Git to work well with Jenkins is surprisingly sparse and the process is extremely frustrating (in my experience). Hopefully this will help!
* This assumes some master Jenkins service is setup with the Git plugin and has network access to the Windows box that is becoming a slave.
Setup Jenkins Slave
- Goto Jenkins master.
- Select ‘Manage Jenkins’ > ‘Manage Nodes’.
- Select ‘New Node’.
- Give it a name that identifies the computer, select ‘Dumb Slave’, and ‘Ok’. Some example settings:
- Name: win7-thomas
- # of executors: 4 (one executor per cpu is not a bad ratio)
- Remote FS Root: c:\Jenkins\Slaves
- Labels: windows blackberry (this box is good for building the blackberry projects and is a windows box)
- Usage: Utilize this slave as much as possible
- Launch method: Launch slave agents via Java Web Start
- Availability: Keep this slave on-line as much as possible
- javaws http://jenkins-hostname/computer/win7-thomas/slave-agent.jnlp
- Or, one of the other suggestions Jenkins shows.
Setup Git
It is advisable to run the Jenkins Slave service as a pre-defined user, as opposed to the SYSTEM user. However, if the Jenkins Slave service is running as the SYSTEM user, the following will help emulate the environment that Jenkins will use when building.
- To run commands as the SYSTEM user, you can use psexec.exe from SysInternals.
- From an Administrator cmd.exe prompt, psexec -i -s cmd.exe will open a new shell as the SYSTEM user.
General Advice when Setting Up Git
- Define a HOME env var equal to %USERPROFILE%.
- Create passphrase-less rsa keys and put them in %HOME%/.ssh. These keys should be setup on whatever server hosts the Git repos. In GitHub, for example, you would need to add the keys to your account.
- Do an initial ssh [email protected] to add GitHub to the known_hosts.
- Get rid of any GIT_SSH env vars if using the default ssh client for auth (as opposed to plink.exe, etc). GIT_SSH=c:\…\plink.exe may exist if you have previously used putty/pageant/TortoiseGit/etc to access Git repos.
- ssh [email protected] (or wherever your repo is) is very useful for debugging. One to three -v flags (i.e. ssh -vv [email protected]) may be added to help debug the connection process.
- Set the %HOME%/.ssh/config to specify which authentication to use:
Host github.com User git Hostname github.com PreferredAuthentications publickey
- If you see the following error message and your files do have the correct perms (0600), then you are suffering from a bug in the msysgit ssh executable. Unix permissions (0644) don’t map to NTFS ACLs. Msys just fakes the behavior of chmod, but it can’t fake a chmod to a restrictive enough permissions set. Steps to fix are below.
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0644 for ‘/path/to/key’ are too open. It is recommended that your private key files are NOT accessible by others. This private key will be ignored. bad permissions: ignore key: /path/to/key
Page 1 of 2 | Next page