test/.drone.yml
XinWei a1495f9dbc
Some checks reported errors
continuous-integration/drone Build encountered an error
'newtest'
2024-10-30 10:18:11 +08:00

37 lines
825 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

kind: pipeline # 定义对象类型还有secret和signature两种类型
type: docker # 定义流水线类型还有kubernetes、exec、ssh等类型
name: ludu-job-drone # 定义流水线名称
clone:
disable: true
steps: # 定义流水线执行步骤,这些步骤将顺序执行
- name: job-build
image: appleboy/drone-ssh # SSH工具镜像
settings:
host: 101.43.112.107 # 远程连接地址
username: root # 远程连接账号
password:
from_secret: ssh_password
port: 22 # 远程连接端口
command_timeout: 20m # 远程执行命令超时时间
script:
- ls /
- ssh root@47.118.40.3 <<'EOF'
cd /
ls
cd /build_project
ls
# 可以在这里添加更多命令
EOF