63 lines
1.2 KiB
YAML
63 lines
1.2 KiB
YAML
|
|
kind: pipeline
|
|
type: ssh
|
|
name: ssh-linux-test-hir-publish
|
|
|
|
platform:
|
|
os: Linux
|
|
arch: 386
|
|
|
|
clone:
|
|
disable: true
|
|
|
|
server:
|
|
host: 106.14.89.110
|
|
user: root
|
|
password:
|
|
from_secret: test_ssh_pwd
|
|
|
|
steps:
|
|
- name: publish-test-hir
|
|
commands:
|
|
- bash /opt/1panel/xc-deploy-new/Test_HIR/devops-publish/test-branch-to-test.sh || echo "publish failed"
|
|
|
|
- name: notify-wecom
|
|
commands:
|
|
- |
|
|
STATUS=$DRONE_BUILD_STATUS
|
|
|
|
if [ "$STATUS" = "success" ]; then
|
|
MSG="🟢 Test_HIR 发布成功"
|
|
COLOR="info"
|
|
else
|
|
MSG="🔴 Test_HIR 发布失败"
|
|
COLOR="warning"
|
|
fi
|
|
|
|
curl -X POST 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=cdd97aab-d256-4f07-9145-a0a2b1555322' \
|
|
-H 'Content-Type: application/json' \
|
|
-d "{
|
|
\"msgtype\": \"markdown\",
|
|
\"markdown\": {
|
|
\"content\": \"${MSG}\n
|
|
> 项目:${DRONE_REPO_NAME}\n
|
|
> 分支:${DRONE_BRANCH}\n
|
|
> 构建号:${DRONE_BUILD_NUMBER}\n
|
|
> 状态:<font color=\\\"${COLOR}\\\">${STATUS}</font>\"
|
|
}
|
|
}"
|
|
when:
|
|
status: [ success, failure ]
|
|
|
|
|
|
|
|
trigger:
|
|
branch:
|
|
- Test_HIR_Net8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|