golang发版通知实践

一、诉求

业务发版ci/cd脚本操作,希望每次发版的告警通知里加上最近提交记录信息

二、实现

1. git log及go build -ldflags

golang发版通知实践_第1张图片

git log --pretty=format:"commit_id:%h;author:%an;date:%cr;desc:%s" -3

2. 实现流程

2.1 git提取log并处理
2.2 makefile编译部署加上log
2.3 Makefile更新
2.4 项目定义全局变量BuildTag,启动提取变量调三方报警

git checkout master
git pull --rebase origin master
# git提取log并处理
commitLogs=`git log --pretty=format:"commit_id:%h;author:%an;date:%cr;desc:%s" -3 | sed "s/\n//g" | sed s/[[:space:]]//g `
commitLog=""
for log in $commitLogs; do
	echo $log
	commitLog="$commitLog||$log"
done

#makefile编译部署加上log
make $i build_tag=$commitLog

# Makefile更新
api:
	echo $(build_tag)
	go build -ldflags "-X 'main.BuildTag=$(build_tag)'" -o bin/api ./src/api
var BuildTag   string // main文件定义并使用

你可能感兴趣的:(build,git,golang)