options to tasks.
tasks:
- name: pre
task:
- func: shell
do:
- printf 'Prepare Env'
always: pre
- name: task
task:
- func: shell
do:
- sleep 60
timeout: 10
retries: 3
allow_fail: true
allow_exitcodes:
- 128
- name: post
task:
- func: shell
do:
- printf 'Cleanup Env'
always: post
Would be nice to have possiblity to add:
options to tasks.
Thanks