Клон Дженкинса завершается неудачно с репозиторием фиксации кода AWS (код состояния 143) - PullRequest
0 голосов
/ 22 января 2019

Я установил Jenkins на своем Mac и пытаюсь клонировать репозиторий фиксации кода AWS (URL выглядит следующим образом: https://git -codecommit.us-east-1.amazonaws.com / v5 / repos / TestRepo ).

Хранилище - это всего несколько МБ, которые можно клонировать с помощью терминала с помощью команды git clone, но Дженкинс выдает следующую ошибку

ERROR: Timeout after 10 minutes
ERROR: Error fetching remote repo 'origin'
hudson.plugins.git.GitException: Failed to fetch from https://git-codecommit.us-east-1.amazonaws.com/v5/repos/testRepo
at hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:888)
    at hudson.plugins.git.GitSCM.retrieveChanges(GitSCM.java:1155)
    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:1810)
    at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
    at hudson.model.ResourceController.execute(ResourceController.java:97)
    at hudson.model.Executor.run(Executor.java:429)
Caused by: hudson.plugins.git.GitException: Command "git fetch --tags --progress https://git-codecommit.us-east-1.amazonaws.com/v5/repos/testRepo +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 hudson.plugins.git.GitSCM.fetchFrom(GitSCM.java:886)
    ... 11 more
ERROR: Error fetching remote repo 'origin'
Finished: FAILURE

Я также увеличил время до 30 минут, но не повезло. Я ожидаю, что Дженкинс клонирует хранилище без каких-либо ошибок.

Любая помощь высоко ценится.

1 Ответ

0 голосов
/ 22 января 2019

Похоже, у вас проблема с доступом пользователя. Чтобы решить эту проблему, вы можете попробовать использовать ssh вместо https в своей конфигурации или переустановить Jenkins из командной строки (эта проблема иногда возникает у пользователей MacOS, если Jenkins был установлен с использованием файла .pkg). См. Ответы на этот вопрос для получения более подробной информации.

...