gogs推送指定分支触发jenkins构建

配置推送到 Test_测试发布 分支时触发jenkins构建

#!/usr/bin/env bash

while read oldrev newrev refname
do
    branch=$(git rev-parse --symbolic --abbrev-ref $refname)         
    if [ "Test_测试发布" = "$branch" ]; then
    
        curl -I -X POST http://jenkins buildWithParameters接口?branch=$branch -u 用户名:密码
        
    fi
done
posted @ 2024-11-18 13:55  怀里的懒猫  阅读(9)  评论(0编辑  收藏  举报