taskotron-dev: assume task formula is stored in runtask.yml

This commit is contained in:
Martin Krizek 2016-05-11 13:44:49 +00:00
parent a22a24c225
commit e8b58cd984

View file

@ -178,7 +178,12 @@ factory.addStep(ShellCommand(command=["runtask",
'-a', Interpolate('%(prop:arch)s'),
'-j', Interpolate('%(prop:buildername)s/%(prop:buildnumber)s'),
'--uuid', Interpolate('%(prop:uuid)s'),
{% if deployment_type in ['stg', 'prod'] %}
Interpolate('%(prop:taskname)s.yml')],
{% elif deployment_type in ['dev'] %}
'runtask.yml'],
{% endif %}
descriptionDone=[Interpolate('%(prop:taskname)s on %(prop:item)s')],
name='runtask',
timeout=2400,