Jenkins访问bitbucket.org上的Mercurial存储库时出现问题

时间:2011-06-16 12:39:44

标签: mercurial jenkins bitbucket

我的Jenkins服务器已经无法构建在bitbucket.org上托管的maven项目。构建在本地工作,但Jenkins报告此错误:

[workspace] $ hg incoming --quiet --bundle hg.bundle --template "<changeset node='{node}' author='{author|xmlescape}' rev='{rev}' date='{date}'><msg>{desc|xmlescape}</msg><added>{file_adds|stringify|xmlescape}</added><deleted>{file_dels|stringify|xmlescape}</deleted><files>{files|stringify|xmlescape}</files><parents>{parents}</parents></changeset>\n" --rev default
abort: no suitable response from remote hg!
ERROR: Failed to determine incoming changes
[workspace] $ hg log --rev . --template {node}

任何想法发生了什么?

[编辑]

所以,我运行hg paths并收到tomcat用户不受信任的回复:

Not trusting file /usr/local/tomcat/.jenkins/jobs/Test/workspace/.hg/hgrc from untrusted user tomcat, group tomcat

运行hg incoming作为tomcat用户

cd /usr/local/tomcat/.jenkins/jobs/Test/workspace
sudo -u tomcat hg incoming 

我收到一条错误消息,说我的ssh密钥权限太开放了:

remote: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
remote: @         WARNING: UNPROTECTED PRIVATE KEY FILE!          @
remote: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
remote: Permissions 0620 for '/usr/local/tomcat/.ssh/id_rsa' are too open.
remote: It is recommended that your private key files are NOT accessible by others.
remote: This private key will be ignored.
remote: bad permissions: ignore key: /usr/local/tomcat/.ssh/id_rsa
remote: Permission denied (publickey).
abort: no suitable response from remote hg!

并感谢to this SO question

我设置了权限,现在Jenkins可以成功构建。

1 个答案:

答案 0 :(得分:1)

由于您的hg incoming基于存储库hgrc中的“默认”路径(使用hg paths查看它们,或打开文件),您可能应该确定远程存储库的地址仍然正确,项目仍可访问。