1

当我在Jenkins 2 多分支项目中有一个管道时,例如:

node {
  stage 'Stage Checkout'

  // Checkout code from repository and update any submodules
  //checkout scm
  git credentialsId: 'myId', url: 'https://gitlab.mycompany.com'

  stage 'Stage Build'
  echo "My branch is: ${env.BRANCH_NAME}"
}

我确实需要指定credentialsIdandURL两次:

  1. 在上面的 Jenkinsfile 中
  2. 在 Jenkins 用户界面中在此处输入图像描述

两次指定这两个属性似乎是多余的。是否有可能只指定一次

4

1 回答 1

5

您可以使用:

checkout scm

代替git命令,checkout scm将使用 Jenkins 配置中提供的数据。

于 2016-06-23T18:04:51.930 回答