如何让Jenkins连接到git存储库

Cla*_*ied 6 git ssh gitweb jenkins

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

有趣的是,当我从命令行执行相同的命令时,它工作,文件从repo中拉下来.

export GIT_SSL_NO_VERIFY=true
git clone https://blah.com:8443/blah.git
Run Code Online (Sandbox Code Playgroud)

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

在此输入图像描述

更新/澄清: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
Run Code Online (Sandbox Code Playgroud)

Cla*_*ied 1

感谢大家的建议、评论和帮助。我认为这是一个插件问题。其他人经历了与我相同的事情(原始帖子在这里)。如果我从命令行运行此命令,或者如果我在 Jenkins 中输入命令为“构建”>“执行 shell”>“命令”,则它可以正常工作。

我有 Git 客户端插件 = 1.4.3 和 Git 插件 1.5.0。我会等待看看是否有新的插件可以解决这个问题。