当前位置:   article > 正文

Jenkins下拉取gitlab的branches和tags的字段说明

Jenkins下拉取gitlab的branches和tags的字段说明

checkout(changelog: false, poll: false, scm:[$class: 'GitSCM', branches: [[name: "refs/tags/${fc}"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'CleanBeforeCheckout', deleteUntrackedNestedRepositories: true],[$class: 'CloneOption', noTags: false, shallow: true, depth: 1, honorRefspec:true], [$class: 'RelativeTargetDirectory', relativeTargetDir: "${fc}"]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: '4ce8a484-4afc-4414-a0fd-e650105daba6',refspec: "+refs/tags/${fc}:refs/remotes/origin/tags/${fc}",url: "ssh://git@174.34.48.189:8022/PSW_Automation/${Project_Name}.git"]]])

  • changelog: false: 指定是否生成变更日志。在此处设置为false表示不生成变更日志。
  • poll: false: 指定是否进行轮询。在此处设置为false表示不进行轮询。
  • scm: 指定源代码管理配置。
  • branches: 指定要拉取的分支。
  • name: 指定要拉取的分支名称,这里使用${fc}作为变量。
  • doGenerateSubmoduleConfigurations: false: 指定是否生成子模块配置。在此处设置为false表示不生成子模块配置。
  • extensions: 指定GitSCM的扩展配置。
  • CleanBeforeCheckout: 在检出之前执行清理操作。
  • deleteUntrackedNestedRepositories: true: 删除未跟踪的嵌套存储库。
  • CloneOption: 克隆选项配置。
  • noTags: false: 克隆时包括标签。
  • shallow: true: 使用浅克隆。
  • depth: 1: 克隆深度为1。
  • honorRefspec: true: 尊重引用规范。
  • RelativeTargetDirectory: 指定相对目标目录。
  • relativeTargetDir: "${fc}": 设置相对目标目录为${fc}变量的值。
  • submoduleCfg: 子模块配置,此处为空列表。
  • userRemoteConfigs: 指定远程仓库配置。
  • credentialsId: '4ce8a484-4afc-4414-a0fd-e650105daba6': 指定凭据ID。
  • refspec: "+refs/tags/${fc}:refs/remotes/origin/tags/${fc}": 指定引用规范。
  • url: "ssh://git@174.34.48.189:8022/PSW_Automation/${Project_Name}.git": 指定Git仓库的URL,其中${Project_Name}是变量。这些字段和配置一起构成了一个Git源代码管理配置,用于在Jenkins Pipeline中拉取tags下的工程。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/547356
推荐阅读
相关标签
  

闽ICP备14008679号