benchmarks.html 1.68 KB
Newer Older
Russ Cox's avatar
Russ Cox committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
<!DOCTYPE HTML>
<html>
  <head>
    <title>Go benchmarks</title>

    <style>
      h1 {
          font-size: 1em;
          font-weight: bold;
      }
      h2 {
          font-size: 1em;
          font-weight: bold;
      }
      table.alternate {
          white-space: nowrap;
      }
      table.alternate tr td {
        padding-right: 10px;
      }
      table.alternate tr td:last-child {
        padding-right: 0;
      }
      table.alternate tr:nth-child(2n) {
        background-color: #f8f8f8;
      }
      td.revision {
      }
      span.nodeseq {
      }
      td.user {
        font-size: small;
      }
      td.date {
        color: #aaa;
        font-size: small;
      }
      td.result {
        text-align: center;
      }
      span.ok {
      }
      td.desc {
        font-size: small;
        font-family: sans-serif;
      }
      th.builder {
        font-weight: bold;
        padding-right: 0.5em;
      }
    </style>
  </head>

  <body>
    <h1>Go dashboard - benchmarks</h1>
    
    <a href="/">build status</a>

    <h2>Benchmarks</h2>
    <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>

      {% for m in benchmarks %}
      <tr>
        <td class="name"><a href="/benchmarks/{{m.name}}">{{m.name}}</a></td>

        {% for b in m.builds %}
          <td class="result">
          {% if b.url %}
            <img src="{{b.url}}&chs=80x20&chf=bg,s,00000000&chco=000000ff&chls=1,1,0">
          {% endif %}
          </td>
        {% endfor %}
      </tr>
      {% endfor %}
    </table>
  </body>
</html>