我确信我做的事情很愚蠢,大多数人都会嘲笑,但我似乎无法让Jenkins建立多分支管道。我把问题简化为本质。具有空节点JenkinsFile的单个分支(主)。我有第二个项目,一个标准的Freestyle项目,基本上运行true
来验证它的构建。
这是我的Freestyle配置:
Repository URL: ssh://git@rgit.vegicorp.net:7999/dw/foobar.git
Credentials: None
BUILD
Execute Shell
Command: True
构建工作正常。 (基本上,repo检出,true
运行,并且构建报告为成功。
这是我的Multibranch构建配置:
BRANCH SOURCES
Project Repository: ssh://git@rgit.vegicorp.net:7999/dw/foobar.git
Credentials: None
BUILD CONFIGURATION
Mode: By JenkinsFile
当我进行分支索引时,我收到了失败,并且日志显示:
Started
Setting origin to ssh://git@cmstash.travelclick.net:7999/dw/foobar.git
Fetching origin...
FATAL: Failed to recompute children of test » Jenkinsfile Test \
java.lang.IllegalStateException: Cannot open session, connection is \
not authenticated.
at com.trilead.ssh2.Connection.openSession(Connection.java:1127)
at org.jenkinsci.plugins.gitclient.trilead.TrileadSession.exec(TrileadSession.java:32)
at org.eclipse.jgit.transport.TransportGitSsh$SshFetchConnection.<init>(TransportGitSsh.java:262)
at org.eclipse.jgit.transport.TransportGitSsh.openFetch(TransportGitSsh.java:161)
at org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:136)
at org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122)
at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1138)
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:130)
at org.jenkinsci.plugins.gitclient.JGitAPIImpl.fetch(JGitAPIImpl.java:678)
at jenkins.plugins.git.AbstractGitSCMSource.retrieve(AbstractGitSCMSource.java:174)
at jenkins.scm.api.SCMSource.fetch(SCMSource.java:146)
at jenkins.branch.MultiBranchProject.computeChildren(MultiBranchProject.java:294)
at com.cloudbees.hudson.plugins.folder.computed.ComputedFolder.updateChildren(ComputedFolder.java:157)
at com.cloudbees.hudson.plugins.folder.computed.FolderComputation.run(FolderComputation.java:122)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:410)
Finished: FAILURE
我的JenkinsFile(位于Repo的根目录)说:
node {
}
当我没有进行多分支管道并将其作为Jenkins构建脚本放入时,这是有效的。我只想验证Jenkins能够拿起我的JenkinsFile。
答案 0 :(得分:1)
发现问题:即使您不需要使用凭据, 必须 也会设置凭据。 freestyle作业没有设置凭据,并且可以访问此特定的Git存储库。在我们的旧Jenkins服务器中,我们使用ssh://
并在$HOME/.ssh
目录中为我们的Git项目设置公钥/私钥。我们的Git项目都不使用凭证,也不需要凭证。
但是,Multibranch Pipeline确实需要凭据 - 而且非空JenkinsFile
。当我最终设置凭证时,我必须在JenkinsFile
中添加至少一个步骤,否则它不会触发单个构建。)
答案 1 :(得分:0)
我认为你也像我一样打BUG ..
{`https://issues.jenkins-ci.org/browse/JENKINS-35567
Jenkins workflow-multibranch with git - IllegalStateException尝试添加jgit,但没有帮助 `}
你有没有解决这个问题?