I'm brand new to Jenkins, and just trying to set up a simple test to try and play around with it a bit, but I'm hitting a snag, and not sure what the issue is. I have a very basic git repository, and which I used to create a bare shared repository, and I'm just pointing directly to the repository itself in my configuration. Whenver I run a build job however I get the following:
Started by user anonymous
Building in workspace /var/lib/jenkins/workspace/test-default
Cloning the remote Git repository
Cloning repository file:///home/repos/test.git
> /usr/bin/git init /var/lib/jenkins/workspace/test-default # timeout=10
ERROR: Error cloning remote repo 'origin'
ERROR: Error cloning remote repo 'origin'
Finished: FAILURE
I'm able to clone the repo just fine from the command line, and I was also able to clone it just fine by creating a new build job where instead of linking to git, I just execute the clone command itself in Jenkins, with no issues. Anyone have any tips/ideas? With the limited error output, I'm not really sure what else to check.
Thanks in advance!