如何让Jenkins连接到git存储库

时间:2013-11-01 20:53:23

标签: git ssh jenkins gitweb

我无法让Jenkins认出我的git repo。屏幕截图如下。我被告知使用git clone https://blah/blah.git将repo克隆为只读,无需凭据或密钥。我想拉取代码并构建它。

有趣的是,当我从命令行执行相同的命令时,它会起作用,文件会从仓库中拉下来。

export GIT_SSL_NO_VERIFY=true
git clone https://blah.com:8443/blah.git

当我在Jenkins中输入url和environment变量时,它表示它无法连接到存储库。有谁知道我可能需要做什么才能使它工作?在此先感谢您的帮助。

enter image description here

更新/澄清:Jenkins安装在服务帐户下,与公司内的任何用户无关。

更新#2: 这是控制台输出。我已经消毒了一点,所以如果我错过了什么,我会道歉。

Started by user anonymous
Building in workspace /home/hduser/.jenkins/workspace/analytics
Fetching changes from the remote Git repository
Fetching upstream changes from https://blah.com:8443/blah.git
FATAL: Failed to fetch from https://blah.com:8443/blah.gitt
hudson.plugins.git.GitException: Failed to fetch from https://blah.com:8443/blah.git
    at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:612)
    at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:836)
    at hudson.plugins.git.GitSCM.checkout(GitSCM.java:861)
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1411)
    at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:652)
    at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:88)
    at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:557)    
    at hudson.model.Run.execute(Run.java:1665)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:46)
    at hudson.model.ResourceController.execute(ResourceController.java:88)
    at hudson.model.Executor.run(Executor.java:246)
Caused by: hudson.plugins.git.GitException: Failed to connect to https://blah.com:8443/blah.git
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.getURLWithCrendentials(CliGitAPIImpl.java:1391)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.fetch(CliGitAPIImpl.java:167)
    at hudson.plugins.git.GitAPI.fetch(GitAPI.java:229)
    at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:610)
    ... 10 more

1 个答案:

答案 0 :(得分:1)

感谢大家的建议,意见和帮助。我认为这是一个插件问题。其他人经历了同样的事情(original post here)。如果我从命令行运行此命令,或者如果我在Jenkins中输入命令作为Build> Execute shell> Command,它可以正常工作。

我有Git Client插件= 1.4.3和Git插件1.5.0。我等着看一个新的插件是否能解决这个问题。