Jenkins scm 用户<->邮件映射。如何通过 cli 转储/恢复/编辑
在设置新的 Hudson/Jenkins 实例时,我遇到了必须手动提供 scm 用户的所有电子邮件地址的问题。
我们正在使用 subversion,我无法从用户名生成邮件地址。我得到了一个映射,但我发现没有办法在不使用 GUI 的情况下复制/编辑它。有 20 多个用户,这让我很无聊,我只想编辑一个文件或其他东西。
也许我错过了一些琐碎的事情,比如 scmusers.xml (它完全可以完成这项工作)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
到目前为止,我有 2 个解决方案:
users/USERNAME/config.xml
中,可以进行版本控制/更新/等。RegEx+Email+Plugin
,为每个用户创建一条规则并版本该文件。I've got 2 solutions so far:
users/USERNAME/config.xml
could be versioned / updated / etc.RegEx+Email+Plugin
, create one rule per user and version that file.对于 20 多个用户,为 scm 用户设置列表是最佳选择。然后,当人们添加/离开群组时,您只需编辑邮件列表而不是 Hudson 工作。另外,根据您的邮件列表软件,人们可能能够在列表中添加和删除自己,这将节省您在 Hudson 中自行维护列表的时间。
您可能还想研究 Hudson 服务器使用的任何电子邮件服务器的别名支持。让 Hudson 使用 SVN 用户名发送它想要的电子邮件,然后在 /etc/aliases 文件(或电子邮件服务器的等效文件)中定义别名,将 SVN 用户名映射到实际的电子邮件地址。
With 20+ users, setting up a list for the scm users is the way to go. Then when folks add/leave the group, you only have to edit the mailing list instead of the Hudson jobs. Also depending on your mailing list software, folks might be able to add and drop themselves from the list which would save you the time of maintaining it yourself in Hudson.
You might also want to look into the alias support of whatever email server your Hudson server is using. Let Hudson send out the emails it wants to using the SVN usernames, but then define aliases in your /etc/aliases file (or equivalent for your email server) that map the SVN usernames to the actual email addresses.