ci(#90): CI/CD流水线 - lint/test/build镜像/SSH自动部署+健康检查回滚+企微通知

This commit is contained in:
bot_dev2
2026-08-11 07:05:40 +08:00
parent 0f382ce2d0
commit 805c2918bd
4 changed files with 153 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#!/usr/bin/env python3
"""CI 结果企业微信机器人通知(Issue #90)。"""
import argparse, json, os, sys, urllib.request
def main():
ap = argparse.ArgumentParser()
ap.add_argument("--status", required=True)
ap.add_argument("--commit", default="")
args = ap.parse_args()
webhook = os.environ.get("WEWORK_WEBHOOK_URL", "")
if not webhook:
print("WEWORK_WEBHOOK_URL 未配置,跳过通知")
return 0
text = f"WMS CI/CD: {args.status} (commit {args.commit[:8]})"
req = urllib.request.Request(
webhook,
data=json.dumps({"msgtype": "text", "text": {"content": text}}).encode(),
headers={"Content-Type": "application/json"},
)
try:
with urllib.request.urlopen(req, timeout=10) as resp:
print("notify sent:", resp.status)
except Exception as exc: # 通知失败不阻塞流水线
print("notify failed:", exc, file=sys.stderr)
return 0
if __name__ == "__main__":
sys.exit(main())