【发布时间】:2017-12-01 00:15:03
【问题描述】:
我正在尝试将 bitbucket 私人仓库连接到 jenkins。我在 Bitbucket 中设置了一个 webhook。以及向 Jenkins 添加凭据。我的构建仍然卡住,无法从 Bitbucket 中提取源代码。 我知道它只在私人仓库中,因为我试图与公共 bitbucket 仓库连接并且它工作得很好。
这是我在 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 能够获取和下载公共 repo 内容。
3) 这是第一次设置所有更新的插件,
Git 插件 - 3.3.1
Git 客户端插件 - 2.4.6
凭据插件 - 2.1.13
詹金斯 - 2.59
我想不出还有什么,因为詹金斯无法运行命令?
有人可以帮忙吗!
【问题讨论】: