test/.drone.yml
admin a804482dbd
All checks were successful
continuous-integration/drone/push Build is passing
更新 .drone.yml
2025-03-28 09:34:24 +00:00

32 lines
541 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
clone:
disable: true
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
clone:
disable: true
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