mirror of https://github.com/google/oss-fuzz.git
21 lines
480 B
HTML
21 lines
480 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<head>
|
|
<title>OSS Fuzz Build Status</title>
|
|
</head>
|
|
<body>
|
|
<h1>Failing builds</h1>
|
|
<ul>
|
|
{% for failure in failures -%}
|
|
<li><a href="/build_logs/{{ failure.name }}/latest.txt">{{ failure.name }}</a></li>
|
|
{% endfor -%}
|
|
</ul>
|
|
<h1>Healthy builds</h1>
|
|
<ul>
|
|
{% for success in successes -%}
|
|
<li><a href="/build_logs/{{ success.name }}/latest.txt">{{ success.name }}</a></li>
|
|
{% endfor -%}
|
|
</ul>
|
|
<p>Last updated {{ last_updated }} (UTC)</p>
|
|
</body>
|