2019-02-24 09:53:49 +01:00
|
|
|
version: 2
|
|
|
|
tasks:
|
|
|
|
task-with-details:
|
2019-02-24 11:01:48 +01:00
|
|
|
deps: [dependend-task]
|
2019-02-24 09:53:49 +01:00
|
|
|
details: |
|
|
|
|
This is a very long detailed description
|
|
|
|
with multiple lines
|
|
|
|
cmds:
|
2019-02-24 11:01:48 +01:00
|
|
|
- echo 'task-with-details was executed'
|
2019-02-24 09:53:49 +01:00
|
|
|
|
|
|
|
task-without-details:
|
2019-02-24 11:01:48 +01:00
|
|
|
deps: [dependend-task]
|
2019-02-24 09:53:49 +01:00
|
|
|
cmds:
|
2019-02-24 11:01:48 +01:00
|
|
|
- echo 'task-without-details was executed'
|
|
|
|
|
|
|
|
dependend-task:
|
|
|
|
cmds:
|
|
|
|
- echo 'dependend-task was executed'
|
|
|
|
|
|
|
|
other-task-with-details:
|
2019-02-24 11:09:55 +01:00
|
|
|
details: details of other-task-with-details
|
2019-02-24 11:01:48 +01:00
|
|
|
cmds:
|
|
|
|
- echo 'other-task-with-details was executed'
|