尝试使用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:用户名或密码无效。
答案 0 :(得分:0)
1)无需检查GitHub project
标签中的General
2)在Source Code Managerment
中,需要一个以.git
结尾的有效git repo url。
对于github repo,您可以获得以下repo url:
示例:https://github.com/cucumber/cucumber-js.git
3)在Credentials
中,如果repo不需要帐户访问权限,您可以选择Credentials
时-none-
离开。
4)在Branch Specifier
中,如果你的代码在branch:master中,你可以设置*/master
如果在branch:develop中,您可以设置*/develop
或其他分支*/<branch name>