test/.drone.yml

36 lines
777 B
YAML
Raw Normal View History

2024-10-28 10:38:16 +08:00
kind: pipeline # 定义对象类型还有secret和signature两种类型
type: docker # 定义流水线类型还有kubernetes、exec、ssh等类型
name: ludu-job-drone # 定义流水线名称
2024-08-08 09:43:22 +08:00
2024-09-10 11:11:52 +08:00
clone:
disable: true
2024-10-28 10:38:16 +08:00
steps: # 定义流水线执行步骤,这些步骤将顺序执行
- name: job-build
2024-10-28 10:34:13 +08:00
image: appleboy/drone-ssh # SSH工具镜像
settings:
2024-10-30 09:56:46 +08:00
host: 101.43.112.107 # 远程连接地址
2024-10-28 10:34:13 +08:00
username: root # 远程连接账号
2024-10-30 09:56:46 +08:00
password:
2024-10-28 10:34:13 +08:00
2024-10-30 09:56:46 +08:00
from_secret: ssh_password
2024-10-28 10:34:13 +08:00
port: 22 # 远程连接端口
command_timeout: 20m # 远程执行命令超时时间
script:
2024-10-30 09:57:53 +08:00
- ls /
2024-10-30 10:18:11 +08:00
- ssh root@47.118.40.3 <<'EOF'
cd /
ls
cd /build_project
ls
EOF