Jenkins无法从私人bitbucket云回购中提取代码

时间:2017-06-27 19:55:20

标签: git jenkins bitbucket

我正在尝试将bitbucket私人仓库连接到jenkins。我在Bitbucket中设置了一个webhook。以及为Jenkins添加凭据。仍然我的构建卡住了,无法从Bitbucket中获取源代码。 我知道这只是私人回购,因为我试图连接公共bitbucket repo,它工作正常。

这是我在jenkins中遇到的错误

ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://xxxx@bitbucket.org/xxxxx/test2.git
    at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:809)
    at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1076)
    at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1107)
    at hudson.scm.SCM.checkout(SCM.java:495)
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1281)
    at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:604)
    at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
    at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
    at hudson.model.Run.execute(Run.java:1735)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
    at hudson.model.ResourceController.execute(ResourceController.java:97)
    at hudson.model.Executor.run(Executor.java:405)
Caused by: hudson.plugins.git.GitException: Error performing git command
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1886)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1596)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$300(CliGitAPIImpl.java:71)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:348)
    at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:807)
    ... 11 more
Caused by: org.jvnet.winp.WinpException: Failed to read RT_USER_PROCESS_PARAMETERS error=299 at envvar-cmdline.cpp:151
    at org.jvnet.winp.Native.getCmdLineAndEnvVars(Native Method)
    at org.jvnet.winp.WinProcess.parseCmdLineAndEnvVars(WinProcess.java:126)
    at org.jvnet.winp.WinProcess.getCommandLine(WinProcess.java:102)
    at hudson.util.ProcessTree$WindowsOSProcess.getArguments(ProcessTree.java:451)
    at hudson.plugins.msbuild.MsBuildKillingVeto.vetoProcessKilling(MsBuildKillingVeto.java:56)
    at hudson.util.ProcessTree$OSProcess.getVeto(ProcessTree.java:243)
    at hudson.util.ProcessTree$WindowsOSProcess.killRecursively(ProcessTree.java:429)
    at hudson.util.ProcessTree.killAll(ProcessTree.java:146)
    at hudson.Proc$LocalProc.destroy(Proc.java:380)
    at hudson.Proc$LocalProc.join(Proc.java:353)
    at hudson.Proc.joinWithTimeout(Proc.java:166)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:1873)
    ... 15 more
ERROR: null
Finished: FAILURE

进一步研究:

1)我能够运行相同的命令(C:\ Program Files \ Git \ bin \ git.exe fetch --tags --progress https://xxx@bitbucket.org/xxx/test.git + refs / heads / :refs / remotes / release / )在同一个位置(Jenkins工作区) - 它成功获取远程仓库。

2)Jenkins能够获取和下载公共回购内容。

3)这是第一次使用所有更新的插件进行设置,

Git插件 - 3.3.1 Git客户端插件 - 2.4.6 凭证插件 - 2.1.13
詹金斯 - 2.59

我没有想到还有什么可以存在,因为jenkins无法运行命令?

有人可以帮忙!

1 个答案:

答案 0 :(得分:1)

可能失败的事项清单:

编辑:

  • 解决方案:您是否尝试使用其他仓库?