Jenkins Blue Ocean提供了用于颠覆SCM步骤的凭据

时间:2019-08-21 18:43:12

标签: jenkins svn credentials jenkins-blueocean

我在普通的WIN10-VM上设置了一个Jenkins(所有推荐插件),以测试Blue Ocean插件是否可供我和我的同事选择以简单地进行设置。另外,我设置了一个本地Git服务器(Bonobo)来存储BlueOcean的Jenkins文件(实际上不支持SVN)。

我在蓝海创建了一条新管道。作为第一步,我想通过subversion签出源代码。我创建了一个Subversion步骤,并填写了存储库的URL,并检查了poll选项。现在,我需要提供svn-repro的凭据,但我不知道该怎么做。

在BlueOcean中甚至可以使用svn-plugin,还是在BlueOcean中使用脚本从svn签出的唯一方法?

到目前为止我尝试过的事情:

  1. 在SYSTEM-CMD中接受https-certificate作为SYSTEM

  2. 将SVN凭证添加到Jenkins /管道

  3. 试图按照(How to set up SVN credentials in Jenkins?

  4. 中的建议设置凭据

1 个答案:

答案 0 :(得分:1)

从几个站点获得一些提示和技巧后,我自己找到了答案:

  1. 为“从源代码管理中签出”生成代码段,如此处所述:({Checkout SVN with credentials in Jenkins pipeline?
  2. 转到管道编辑器,然后按[Strg] + [s]打开“管道脚本”窗口
  3. 创建一个新舞台,并使用代码段填写步骤:
stage('Checkout with SVN'){
     steps {
      ***Paste here the code snippet from the generator (Step 1)***
     }
    }
4. Be happy to get the checkout :)


问候, bluescreenterror