I followed the instructions here: http://nerdwin15.com/2013/04/continuous-integration-with-stash-and-jenkins/
I Have jenkins and stash "connected" however the current probelm is that running the builds hangs at fetching the repo...
Fetching upstream changes from ssh://git@git.xyz.com:7999/gp/gp-xyz.git
FATAL: Failed to fetch from ssh://git@git.xyz.com:7999/gp/gp-xyz.git hudson.plugins.git.GitException: Failed to fetch from ssh://git@git.xyz.com:7999/gp/gp-xyz.git
So from what I gather the problem is that if i run this command on jenkins (which is running on windows)..Is the fact that I have to enter a password here when i run this test command:
$ git clone ssh://git@git.xyz.com:7999/gp/gp-xyz.git Cloning into 'gp-xyz'... Enter passphrase for key '/c/Documents and Settings/userMe/.ssh/id_rsa':
How can i configure windows to store the ssh key so that I can clone like the build server does? Or configure jenkins or stash to use http?
What i tried is:
userMe@jenkins /C $ ssh -T git@git.xyz.com:7999 ssh: git.xyz.com:7999: no address associated with name
userMe@jenkins /C $ ssh -T git@git.xyz.comgit@git.xyz.com's password: Permission denied, please try again. git@git.xyz.com's password:
However, This confuses me. Because a) Stash is running on port 7999 and b) there is no actual user named git on stash but it wont let me change that in the Stash WebHook to Jenkins Plugin
Community moderators have prevented the ability to post new answers.
It looks like you've setup the Jenkins SSH key to have a passphrase (this would cause the "hang" that you mention when cloning from Jenkins). You'll want to either have a key without a passphrase (which needs to be in the .ssh directory of the user which Jenkins runs as), or setup the Jenkins Git configuration to use a credential where you've got the passphrase associated with the SSH key.
Using HTTP would also work if you allow anonymous access to the repository.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Apply agile practices
Transform how you manage your work with agile practices, including kanban and scrum frameworks.
Learning Path
Configure agile boards for Jira projects
Learn how to create and configure agile Jira boards so you can plan, prioritize, and estimate upcoming work.
Jira Essentials with Agile Mindset
Suitable for beginners, this live instructor-led full-day course will set up your whole team to understand how to use Jira with an agile methodology.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.