2024-08-23 15:54:58 +08:00
|
|
|
|
kind: pipeline # 定义对象类型,还有secret和signature两种类型
|
|
|
|
|
|
|
|
|
|
type: docker # 定义流水线类型,还有kubernetes、exec、ssh等类型
|
|
|
|
|
|
2024-08-30 11:23:38 +08:00
|
|
|
|
name: ludu-datacenter-drone # 定义流水线名称
|
2024-08-23 15:54:58 +08:00
|
|
|
|
|
2024-08-30 11:30:02 +08:00
|
|
|
|
clone:
|
|
|
|
|
disable: true
|
2024-08-23 15:54:58 +08:00
|
|
|
|
|
|
|
|
|
steps: # 定义流水线执行步骤,这些步骤将顺序执行
|
|
|
|
|
|
2024-08-27 17:24:23 +08:00
|
|
|
|
- name: build-new-service
|
|
|
|
|
|
2024-08-28 11:27:13 +08:00
|
|
|
|
image: appleboy/drone-ssh # SSH工具镜像
|
2024-08-27 17:24:23 +08:00
|
|
|
|
|
|
|
|
|
settings:
|
|
|
|
|
|
|
|
|
|
host: 121.36.203.133 # 远程连接地址
|
|
|
|
|
|
|
|
|
|
username: root # 远程连接账号
|
|
|
|
|
|
|
|
|
|
password:
|
|
|
|
|
|
|
|
|
|
from_secret: ssh_password3 # 从Secret中读取SSH密码
|
|
|
|
|
|
|
|
|
|
port: 22 # 远程连接端口
|
|
|
|
|
|
|
|
|
|
command_timeout: 10m # 远程执行命令超时时间
|
2024-08-28 11:57:30 +08:00
|
|
|
|
|
2024-08-28 12:02:24 +08:00
|
|
|
|
script: |
|
|
|
|
|
cd /root/ludu-cloud
|
2024-08-30 11:31:17 +08:00
|
|
|
|
git fetch origin
|
|
|
|
|
git reset --hard origin/master
|
|
|
|
|
git clean -fd
|
2024-08-30 11:23:38 +08:00
|
|
|
|
/root/apache-maven-3.9.4/bin/mvn package -Dmaven.test.skip=true
|
|
|
|
|
cd ludu-module-datacenter/ludu-module-datacenter-biz/
|
|
|
|
|
chmod +x run.sh
|
|
|
|
|
./run.sh || echo "ludu-module-datacenter build failed"
|