Show all taskotron logs in buildbot webui

This commit is contained in:
Martin Krizek 2015-12-11 09:26:47 +00:00
parent c779582362
commit ff3b208137

View file

@ -180,7 +180,12 @@ factory.addStep(ShellCommand(command=["runtask",
name='runtask', name='runtask',
timeout=2400, timeout=2400,
{% if deployment_type == 'dev' %} {% if deployment_type == 'dev' %}
logfiles={'taskotron.log': {'filename': Interpolate('/var/lib/taskotron/artifacts/%(prop:uuid)s/taskotron.log'), }})) logfiles={
'taskotron-initiator.log': {'filename': Interpolate('/var/lib/taskotron/artifacts/%(prop:uuid)s/taskotron-initiator.log')},
'taskotron-stdio.log': {'filename': Interpolate('/var/lib/taskotron/artifacts/%(prop:uuid)s/taskotron-stdio.log')},
'taskotron.log': {'filename': Interpolate('/var/lib/taskotron/artifacts/%(prop:uuid)s/taskotron.log')}
}
))
{% endif %} {% endif %}
{% if deployment_type in ['prod', 'stg', 'local'] %} {% if deployment_type in ['prod', 'stg', 'local'] %}
logfiles={'taskotron.log': {'filename': '/var/log/taskotron/taskotron.log', }})) logfiles={'taskotron.log': {'filename': '/var/log/taskotron/taskotron.log', }}))