mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 19:48:04 +00:00
23 lines
252 B
YAML
23 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
|