Дженкнс не может получить с Github - PullRequest
0 голосов
/ 17 октября 2018

Я использую изображение Дженкинса / Дженкинса: его Docker для Дженкинса.Я настроил свои SSH-ключи в контейнере Docker и добавил открытый ключ в свою учетную запись Github.Я могу клонировать мой репозиторий Github из контейнера Docker.

Моя работа Jenkins настроена для использования Git;моя ветка хозяин.Я настроил свои учетные данные в Jenkins, но при запуске задания оно зависает со следующей ошибкой.

     Started by user Administrator
        Building in workspace /var/jenkins_home/workspace/test
        Cloning the remote Git repository
        Cloning repository git@github.com:xxx/stateAnsible.git
         > git init /var/jenkins_home/workspace/test # timeout=10
        Fetching upstream changes from git@github.com:xxx/stateAnsible.git
         > git --version # timeout=10
        using GIT_SSH to set credentials 
         > git fetch --tags --progress git@github.com:xxx/stateAnsible.git +refs/heads/*:refs/remotes/origin/*
hudson.plugins.git.GitException: Command "git fetch --tags --progress git@github.com:xxx/stateAnsible.git +refs/heads/*:refs/remotes/origin/*" returned status code 143:
stdout: 
stderr: 
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2016)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:1735)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$300(CliGitAPIImpl.java:72)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:420)
    at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$2.execute(CliGitAPIImpl.java:629)
    at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1146)
    at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1186)
    at hudson.scm.SCM.checkout(SCM.java:504)
    at hudson.model.AbstractProject.checkout(AbstractProject.java:1208)
    at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:574)
    at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
    at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:499)
    at hudson.model.Run.execute(Run.java:1819)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
    at hudson.model.ResourceController.execute(ResourceController.java:97)
    at hudson.model.Executor.run(Executor.java:429)
ERROR: Error cloning remote repo 'origin'
Finished: FAILURE

1 Ответ

0 голосов
/ 18 октября 2018

Решением было скопировать и вставить закрытый ключ в учетные данные пользователя Jenkins в Jenkins.Я вспоминал в прошлом, что он использовал бы ключи в каталоге по умолчанию без необходимости делать это?Странный.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...