如何在詹金斯上创建量角器作业?

时间:2018-03-27 07:45:10

标签: jenkins protractor

尝试使用jenkins运行e2e规范,在ubuntu 16.04上成功安装jenkins,然后在jenkins仪表板中点击New Item并选择Freestyle Project然后点击下一个General settings页面将打开。在一般情况下,我会选择Github项目并提及项目网址,之后我将转到下一部分"源代码管理"我正在选择Git并粘贴Git存储库URL,但它会给我一个错误

  

无法连接到存储库:命令" git ls-remote -h   https://github.com/repo_name"返回状态码128:stdout:   stderr:remote:用户名或密码无效。

enter image description here

1 个答案:

答案 0 :(得分:0)

1)无需检查GitHub project标签中的General

2)在Source Code Managerment中,需要一个以.git结尾的有效git repo url。

对于github repo,您​​可以获得以下repo url:    enter image description here

示例:https://github.com/cucumber/cucumber-js.git

3)在Credentials中,如果repo不需要帐户访问权限,您可以选择Credentials-none-离开。

4)在Branch Specifier中,如果你的代码在branch:master中,你可以设置*/master    如果在branch:develop中,您可以设置*/develop或其他分支*/<branch name>