test/.drone.yml
admin 643bbf7c7e
Some checks reported errors
continuous-integration/drone/push Build encountered an error
更新 .drone.yml
2025-03-28 09:32:41 +00:00

26 lines
491 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: swr.cn-north-4.myhuaweicloud.com/ddn-k8s/gcr.io/iguazio/alpine:3.17
commands:
- echo "Pipeline 1 执行中..."
node:
app: mvn
---
kind: pipeline
type: docker
name: pipeline-2
depends_on:
- pipeline-1
steps:
- name: deploy
image: swr.cn-north-4.myhuaweicloud.com/ddn-k8s/gcr.io/iguazio/alpine:3.17
commands:
- echo "Pipeline 1 完成后Pipeline 2 开始执行"
node:
app: mvn