代码之家  ›  专栏  ›  技术社区  ›  Rahul Solanki

如何在jenkins上创建量角器作业?

  •  1
  • Rahul Solanki  · 技术社区  · 7 年前

    尝试用jenkins运行e2e规范,在ubuntu 16.04上成功安装jenkins,然后在jenkins仪表板上单击New Item并选择Freestyle Project,然后单击next General settings(下一个常规设置)页面将打开。在常规页面中,我将选择Github项目并提及项目url,然后我将转到下一节“源代码管理”,在该节中,我选择Git并粘贴Git存储库url,但它会给我一个错误

    无法连接到存储库:命令“git ls remote-h https://github.com/repo_name “返回的状态代码128:标准输出: 远程:用户名或密码无效。

    enter image description here

    1 回复  |  直到 7 年前
        1
  •  0
  •   yong    7 年前

    1) 无需检查 GitHub project 在里面 General 选项卡

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

    对于github repo,您可以按以下方式获取repo url: enter image description here

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

    3) 在中 Credentials ,如果回购不要求帐户访问,您可以离开 资格证书 具有 -none- 已选定。

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