文件名称:git-parameter-plugin:JenkinsHudson插件,用于在构建之前选择修订标签
文件大小:693KB
文件格式:ZIP
更新时间:2024-02-24 10:14:35
git GitJava
Git参数 这个插件允许您在构建中分配git分支,标签,请求请求或修订号作为参数。 重要! 无需在插件设置中进行任何特殊设置。 该插件将从您的项目中读取GIT SCM配置。 该插件直接使用了和。 基本配置 项目配置 表格 管道脚本示例 重要! 适用于0.9.4或更高版本 分支类型-基本用法 声明式管道 // Using git without checkout pipeline { agent any parameters { gitParameter branchFilter : ' origin/(.*) ' , defaultValue : ' master ' , name : ' BRANCH ' , type : ' PT_BRANCH ' } stages { stage( ' Example ' ) { steps { git branch : " ${ params.BRANCH } " , url : ' https://github.com/jenkinsci/git-parameter-plugin