Files
pipeline-scripts/chuanqi_server_jenkins
kubbo 0a14e90f8a fix(chuanqi_server_jenkins): 移除 Telegram API URL 中的多余参数
- 删除了 Telegram API URL 中不必要的 key 参数
-优化了 Jenkinsfile 中的 curl命令,提高了代码的可读性和效率
2024-12-14 18:35:01 +08:00

45 lines
1.5 KiB
Plaintext

pipeline {
agent any
stages {
stage('拉取代码') {
steps {
checkout([
$class: 'GitSCM',
branches: [[name: '*/master']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
submoduleCfg: [],
userRemoteConfigs: [[url: 'http://192.168.25.110:8999/kubbo/chuanqi-server.git',credentialsId:'d54e1035-acca-424e-80d0-9f7e29cab9c3']]
])
}
}
stage('部署') {
steps {
echo 'Deploying...'
sh "cp -rf server /home/cq/data/server"
sh "cp -f run.sh /home/cq/data/run.sh"
sh "cp -f stop.sh /home/cq/data/stop.sh"
sh "cp -rf wch /home/cq/data/wch"
sh "docker restart chuanqi-server"
sh "docker exec -itd chuanqi-server bash -- /data/run.sh"
}
}
}
post{
success {
echo 'Deployment finished successfully.'
sh """
curl 'https://api.telegram.org/bot7816434196:AAFtmbUYpUIwcb_SvBnJY0guPIOLCxp2a5s/sendMessage' \\
-H 'Content-Type: application/json' \\
-d '{
"chat_id": "6779541681",
"text":"传奇服务端构建完成!",
}'
"""
}
failure {
echo 'Deployment failed.'
}
}
}