mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-13 12:41:21 +00:00
22 lines
252 B
YAML
22 lines
252 B
YAML
steps:
|
|
first:
|
|
image: test
|
|
|
|
second:
|
|
depends_on: first
|
|
image: test
|
|
|
|
next:
|
|
image: test
|
|
depends_on:
|
|
- first
|
|
- second
|
|
|
|
some:
|
|
image: test
|
|
depends_on:
|
|
- first
|
|
|
|
last:
|
|
image: test
|
|
depends_on: next
|