{{ build.starttime }}
    {{ install_command }}
{% for warning in build.warnings %}
    
      {{ warning.line_no }}
      {{ warning.text }}
      {{ warning.source_file }}
      {{ warning.source_line_no }}
      {{ warning.pre_context }}
      {{ warning.post_context }}
    
{% endfor %}
{% for error in build.errors %}
    
      {{ error.line_no }}
      {{ error.text }}
      {{ error.source_file }}
      {{ error.source_line_no }}
      {{ error.pre_context }}
      {{ error.post_context }}
    
{% endfor %}
    {{ build.endtime }}
    0