2010-02-05 03:58:40 -07:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<head>
|
2010-04-04 15:34:27 -06:00
|
|
|
<title>Benchmarks - Go Dashboard</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css">
|
2010-02-05 03:58:40 -07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2010-04-04 15:34:27 -06:00
|
|
|
<ul class="menu">
|
|
|
|
<li><a href="/">Build Status</a></li>
|
|
|
|
<li><a href="/package">Packages</a></li>
|
2010-06-23 08:27:51 -06:00
|
|
|
<li><a href="/project">Projects</a></li>
|
2010-04-04 15:34:27 -06:00
|
|
|
<li>Benchmarks</li>
|
|
|
|
<li><a href="http://golang.org/">golang.org</a></li>
|
|
|
|
</ul>
|
2010-02-05 03:58:40 -07:00
|
|
|
|
2010-04-04 15:34:27 -06:00
|
|
|
<h1>Go Dashboard</h1>
|
|
|
|
|
2010-02-05 03:58:40 -07:00
|
|
|
<h2>Benchmarks</h2>
|
2010-04-04 15:34:27 -06:00
|
|
|
|
2010-02-05 03:58:40 -07:00
|
|
|
<table class="alternate" cellpadding="0" cellspacing="0">
|
|
|
|
<tr>
|
|
|
|
<th></th>
|
|
|
|
{% for b in builders %}
|
|
|
|
<th class="builder">{{b.goos}}<br>{{b.goarch}}<br>{{b.note}}</th>
|
|
|
|
{% endfor %}
|
|
|
|
</tr>
|
|
|
|
|
2010-04-04 15:34:27 -06:00
|
|
|
{% for bm in rows %}
|
2010-02-05 03:58:40 -07:00
|
|
|
<tr>
|
2010-04-04 15:34:27 -06:00
|
|
|
<td class="name"><a href="/benchmarks/{{bm.name}}">{{bm.name}}</a></td>
|
2010-02-05 03:58:40 -07:00
|
|
|
|
2010-04-04 15:34:27 -06:00
|
|
|
{% for bl in bm.builders %}
|
2010-02-05 03:58:40 -07:00
|
|
|
<td class="result">
|
2010-04-04 15:34:27 -06:00
|
|
|
{% if bl.url %}
|
|
|
|
<img src="{{bl.url}}" />
|
|
|
|
{% else %}
|
|
|
|
<img src="/benchmarks/single?benchmark={{bm.name}}&builder={{bl.name}}" />
|
|
|
|
{% endif %}
|
2010-02-05 03:58:40 -07:00
|
|
|
</td>
|
|
|
|
{% endfor %}
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|