38

刚刚在 Ubuntu 12.04 中安装了 Jenkins,我想创建一个简单的构建,它只是克隆一个项目并构建它。

它失败了,因为它无法标记。它无法标记,因为它错误地说“告诉我你是谁”显然是因为我没有设置 git 设置用户名和用户电子邮件。

但是,我不需要设置这些,Jenkins 将只是克隆存储库,如果它不推送更改,为什么它需要凭据,为什么它根本需要做一个标签?

完整的错误日志是:

Started by user anonymous
Checkout:workspace / /var/lib/jenkins/jobs/Foo.Bar.Baz/workspace - hudson.remoting.LocalChannel@38e609c9
Using strategy: Default
Cloning the remote Git repository
Cloning repository origin
Fetching upstream changes from git@mygithost.mydomain.local:foo-bar-baz/foo-bar-baz.git
Seen branch in repository origin/1.0
Seen branch in repository origin/1.5.4
Seen branch in repository origin/HEAD
Seen branch in repository origin/master
Commencing build of Revision 479d37776b46283a946dd395c1ea78f18c0b97c7 (origin/1.0)
Checking out Revision 479d37776b46283a946dd395c1ea78f18c0b97c7 (origin/1.0)
FATAL: Could not apply tag jenkins-Foo.Bar.Baz-2
hudson.plugins.git.GitException: Could not apply tag jenkins-Foo.Bar.Baz-2
at hudson.plugins.git.GitAPI.tag(GitAPI.java:737)
at hudson.plugins.git.GitSCM$4.invoke(GitSCM.java:1320)
at hudson.plugins.git.GitSCM$4.invoke(GitSCM.java:1268)
at hudson.FilePath.act(FilePath.java:758)
at hudson.FilePath.act(FilePath.java:740)
at hudson.plugins.git.GitSCM.checkout(GitSCM.java:1268)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1193)
at hudson.model.AbstractBuild$AbstractRunner.checkout(AbstractBuild.java:565)
at hudson.model.AbstractBuild$AbstractRunner.run(AbstractBuild.java:453)
at hudson.model.Run.run(Run.java:1376)
at hudson.matrix.MatrixBuild.run(MatrixBuild.java:220)
at hudson.model.ResourceController.execute(ResourceController.java:88)
at hudson.model.Executor.run(Executor.java:175)
at hudson.model.OneOffExecutor.run(OneOffExecutor.java:66)
Caused by: hudson.plugins.git.GitException: Command "git tag -a -f -m Jenkins Build #2 jenkins-Foo.Bar.Baz-2" returned status code 128:
stdout: 
stderr: 
*** Please tell me who you are.

    Run

  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

to set your account's default identity.
Omit --global to set the identity only in this repository.

fatal: empty ident  <jenkins@somehostname.(none)> not allowed

    at hudson.plugins.git.GitAPI.launchCommandIn(GitAPI.java:786)
    at hudson.plugins.git.GitAPI.launchCommand(GitAPI.java:748)
    at hudson.plugins.git.GitAPI.launchCommand(GitAPI.java:758)
    at hudson.plugins.git.GitAPI.tag(GitAPI.java:735)
    ... 13 more
4

5 回答 5

37

在提取/克隆 repo 时标记的想法对于大多数 Build Scheduler 都很常见:
Hudson-Jenkins,还有CruiseControl(由 确定的构建标签labelincrementer)或RTC Jazz Build Engine(它们被称为“快照”)

这个想法是为构建设置输入的持久记录。
这样,即使没有标记,构建调度程序也会为您自动标记您正在提取的代码,以便稍后能够返回到该特定构建。

如果设置了该策略(始终在构建之前进行标记),那么 Jenkins 将需要知道您是谁才能制作一个 git 标签(它是一个带有作者的 git 对象:user.nameuser.email)。

然而,正如“为什么 hudson/jenkins 试图提交? ”中所述:

检查“ ”部分中“ ”Skip internal tag下的“ ”配置。 Advanced...Source code management

这应该避免您似乎不需要的额外标记步骤。

在此处输入图像描述

于 2012-06-20T23:46:32.973 回答
27

至于如何设置 user.email 和 user.name,在 jenkins 中,转到“管理 Jenkins”>“配置系统”并向下滚动到“Git 插件”,你会发现 Git 插件截图

输入您的电子邮件和姓名,您就可以开始了。

于 2013-07-31T03:20:56.037 回答
3

我使用了 iecanfly 上面的解决方案。使用我的 git 用户名和密码无效,我输入了

用户名:詹金斯

电子邮件:jenkins@localhost

这解决了这个问题。

于 2014-05-23T10:43:29.747 回答
1

您还可以通过 SSH 进入 Jenkins 并导航到工作区目录,然后您可以正常运行 git config user.name 和 user.email 命令。

于 2013-06-07T13:52:04.700 回答
0

如果您在 Docker 容器中运行 Jenkins,则需要执行到容器中,docker exec -it <CONTAINER_ID> sh然后使用您的电子邮件和名称运行建议的 git 命令。

于 2019-05-07T19:58:19.637 回答