demo/.drone.yml

27 lines
308 B
YAML
Raw Permalink Normal View History

2020-07-16 11:21:28 +00:00
---
kind: pipeline
name: default
2020-07-16 11:21:28 +00:00
concurrency:
limit: 1
steps:
- name: test
2020-07-16 08:11:38 +00:00
image: alpine
commands:
2020-07-16 11:21:28 +00:00
- sleep 120
- echo "default"
---
kind: pipeline
name: default-1
2020-07-16 11:22:51 +00:00
depends_on:
2020-07-16 11:23:48 +00:00
- default
2020-07-16 11:21:28 +00:00
concurrency:
limit: 1
steps:
- name: test
image: alpine
commands:
- sleep 120
- echo "default-1"
2020-07-16 08:11:38 +00:00