test/.drone.yml
admin 73108127c3
Some checks reported errors
continuous-integration/drone/push Build was killed
更新 .drone.yml
2025-03-28 09:29:33 +00:00

22 lines
335 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
type: docker
name: pipeline-1
steps:
- name: build
image: alpine
commands:
- echo "Pipeline 1 执行中..."
---
kind: pipeline
type: docker
name: pipeline-2
depends_on:
- pipeline-1
steps:
- name: deploy
image: alpine
commands:
- echo "Pipeline 1 完成后Pipeline 2 开始执行"