oss-fuzz/infra/gcb/templates/status_template.html

21 lines
452 B
HTML
Raw Normal View History

2017-03-14 18:26:34 +00:00
<!DOCTYPE html>
<meta charset="utf-8">
<head>
<title>OSS Fuzz Build Status</title>
</head>
<body>
<h1>Failing builds</h1>
<ul>
{% for project in failures -%}
<li><a href="/log-{{project.build_id}}.txt">{{project.name}}</a></li>
2017-03-14 18:26:34 +00:00
{% endfor -%}
</ul>
<h1>Healthy builds</h1>
<ul>
{% for project in successes -%}
<li><a href="/log-{{project.build_id}}.txt">{{project.name}}</a></li>
2017-03-14 18:26:34 +00:00
{% endfor -%}
</ul>
<p>Last updated {{ last_updated }} (UTC)</p>
</body>