#jenkins #bitbucket #jenkins-plugins
#дженкинс #bitbucket #дженкинс-плагины
Вопрос:
Я пытаюсь настроить задание Jenkins для проверки моих запросов на извлечение с помощью плагина Bitbucket Push и Pull request.
Ветвление и фиксация обнаруживаются правильно, но при извлечении источников плагину Jenkins git не удается расширить переменную окружения, установленную в поле «ветви для сборки».
В документации четко указано, что переменная среды может использоваться для указания имени или шаблона ветки.
Плагин Bitbucket для запросов на нажатие и вытягивание уже предоставляет переменную для ветви запроса на извлечение.
BITBUCKET_SOURCE_BRANCH
Source branch - only for pull requests (BB Cloud and BB Server).
Вот ошибка, которую я получаю, когда нажимаю на свой коммит. Вы можете видеть, что фиксация обнаружена правильно, но переменная среды не расширена и не разрешена.
hudson.plugins.git.GitException: Command "/usr/bin/git fetch --tags --force --progress --prune -- origin refs/heads/${BITBUCKET_SOURCE_BRANCH}:refs/remotes/origin/${BITBUCKET_SOURCE_BRANCH}" returned status code 128:
stdout:
stderr: fatal: couldn't find remote ref refs/heads/${BITBUCKET_SOURCE_BRANCH}
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandIn(CliGitAPIImpl.java:2681)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.launchCommandWithCredentials(CliGitAPIImpl.java:2102)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl.access$500(CliGitAPIImpl.java:86)
at org.jenkinsci.plugins.gitclient.CliGitAPIImpl$1.execute(CliGitAPIImpl.java:624)
at jenkins.plugins.git.GitSCMFileSystem$BuilderImpl.build(GitSCMFileSystem.java:366)
at jenkins.scm.api.SCMFileSystem.of(SCMFileSystem.java:197)
at jenkins.scm.api.SCMFileSystem.of(SCMFileSystem.java:173)
at org.jenkinsci.plugins.workflow.multibranch.ReadTrustedStep$Execution.run(ReadTrustedStep.java:101)
at org.jenkinsci.plugins.workflow.multibranch.ReadTrustedStep$Execution.run(ReadTrustedStep.java:82)
at org.jenkinsci.plugins.workflow.steps.AbstractSynchronousNonBlockingStepExecution$1$1.call(AbstractSynchronousNonBlockingStepExecution.java:47)
at hudson.security.ACL.impersonate2(ACL.java:449)
at hudson.security.ACL.impersonate(ACL.java:461)
at org.jenkinsci.plugins.workflow.steps.AbstractSynchronousNonBlockingStepExecution$1.run(AbstractSynchronousNonBlockingStepExecution.java:44)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.base/java.util.concurrent.FutureTask.run(Unknown Source)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.base/java.lang.Thread.run(Unknown Source)
Finished: FAILURE
Я тоже пробовал, но столкнулся с ${GIT_BRANCH}
той же проблемой.
Любая помощь действительно ценится. Спасибо
Комментарии:
1. Вы получаете ту же ошибку при удалении фигурной скобки ->
$BITBUCKET_SOURCE_BRANCH
2. ДА. та же проблема