golang.org/x/build@v0.0.0-20240506185731-218518f32b70/cmd/coordinator/templates/builders.html (about)

     1  <!DOCTYPE html>
     2  <!--
     3   Copyright 2022 The Go Authors. All rights reserved.
     4   Use of this source code is governed by a BSD-style
     5   license that can be found in the LICENSE file.
     6  -->
     7  
     8  <html>
     9  <head><link rel="stylesheet" href="/style.css"/><title>Go Farmer</title></head>
    10  <body>
    11  {{template "build-header"}}
    12  
    13  <div class="page">
    14  
    15  <h2 id='builders'>Defined Builders</h2>
    16  
    17  <table>
    18    <thead><tr><th>name</th><th>pool</th><th>owners</th><th>known issue</th><th>notes</th></tr>
    19    </thead>
    20      {{range .Builders}}
    21        <tr>
    22          <td>{{.Name}}</td>
    23          <td><a href='#{{.HostType}}'>{{.HostType}}</a></td>
    24          <td>{{builderOwners .}}</td>
    25          <td>{{range $i, $issue := .KnownIssues}}{{if ne $i 0}}, {{end}}<a href="https://go.dev/issue/{{$issue}}" title="This builder has a known issue. See: go.dev/issue/{{$issue}}.">#{{$issue}}</a>{{end}}</td>
    26          <td>{{.Notes}}</td>
    27        </tr>
    28      {{end}}
    29  </table>
    30  
    31  <h2 id='hosts'>Defined Host Types (pools)</h2>
    32  
    33  <table>
    34    <thead><tr><th>name</th><th>type</th><th>notes</th></tr>
    35    </thead>
    36      {{range .Hosts}}
    37        <tr id='{{.HostType}}'>
    38          <td>{{.HostType}}</td>
    39          <td>{{.PoolName}}</td>
    40          <td>{{.Notes}}</td>
    41        </tr>
    42      {{end}}
    43  </table>
    44  
    45  </div>
    46  
    47  </body>
    48  </html>