mirror of
https://github.com/golang/go
synced 2024-11-07 05:46:17 -07:00
58edf2a69d
LGTM=rsc R=rsc, minux.ma, iant, oleku.konko CC=golang-codereviews https://golang.org/cl/81730043
261 lines
7.7 KiB
HTML
261 lines
7.7 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>{{$.Dashboard.Name}} Build Dashboard</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
padding: 0; margin: 0;
|
|
}
|
|
h1, h2 {
|
|
margin: 0;
|
|
padding: 5px;
|
|
}
|
|
h1 {
|
|
background: #eee;
|
|
}
|
|
h2 {
|
|
margin-top: 20px;
|
|
}
|
|
.build, .packages {
|
|
margin: 5px;
|
|
border-collapse: collapse;
|
|
}
|
|
.build td, .build th, .packages td, .packages th {
|
|
vertical-align: top;
|
|
padding: 2px 4px;
|
|
font-size: 10pt;
|
|
}
|
|
.build tr.commit:nth-child(2n) {
|
|
background-color: #f0f0f0;
|
|
}
|
|
.build .hash {
|
|
font-family: monospace;
|
|
font-size: 9pt;
|
|
}
|
|
.build .result {
|
|
text-align: center;
|
|
width: 2em;
|
|
}
|
|
.col-hash, .col-result {
|
|
border-right: solid 1px #ccc;
|
|
}
|
|
.build .arch {
|
|
font-size: 66%;
|
|
font-weight: normal;
|
|
}
|
|
.build .time {
|
|
color: #666;
|
|
}
|
|
.build .ok {
|
|
font-size: 83%;
|
|
}
|
|
.build .desc, .build .time, .build .user {
|
|
white-space: nowrap;
|
|
}
|
|
.dashboards, .paginate {
|
|
padding: 0.5em;
|
|
}
|
|
.dashboards > a, .paginate a {
|
|
padding: 0.5em;
|
|
background: #eee;
|
|
color: blue;
|
|
}
|
|
.paginate a.inactive {
|
|
color: #999;
|
|
}
|
|
.fail {
|
|
color: #C00;
|
|
}
|
|
</style>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
|
|
<script>
|
|
var showUnsupported = window.location.hash.substr(1) != "short";
|
|
function redraw() {
|
|
showUnsupported = !$("#showshort").prop('checked');
|
|
$('.unsupported')[showUnsupported?'show':'hide']();
|
|
window.location.hash = showUnsupported?'':'short';
|
|
}
|
|
$(document).ready(function() {
|
|
$("#showshort").attr('checked', !showUnsupported).change(redraw);
|
|
redraw();
|
|
})
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>{{$.Dashboard.Name}} Build Status</h1>
|
|
<nav class="dashboards">
|
|
{{range buildDashboards}}
|
|
<a href="{{.RelPath}}">{{.Name}}</a>
|
|
{{end}}
|
|
<label>
|
|
<input type=checkbox id="showshort">
|
|
show only <a href="http://golang.org/wiki/PortingPolicy">first-class ports</a>
|
|
</label>
|
|
</nav>
|
|
{{with $.Package.Name}}<h2>{{.}}</h2>{{end}}
|
|
|
|
{{if $.Commits}}
|
|
|
|
<table class="build">
|
|
<colgroup class="col-hash" {{if $.Package.Path}}span="2"{{end}}></colgroup>
|
|
{{range $.Builders | builderSpans}}
|
|
<colgroup class="col-result{{if (unsupportedOS .OS)}} unsupported{{end}}" span="{{.N}}"></colgroup>
|
|
{{end}}
|
|
<colgroup class="col-user"></colgroup>
|
|
<colgroup class="col-time"></colgroup>
|
|
<colgroup class="col-desc"></colgroup>
|
|
<tr>
|
|
<!-- extra row to make alternating colors use dark for first result -->
|
|
</tr>
|
|
<tr>
|
|
{{if $.Package.Path}}
|
|
<th colspan="2">revision</th>
|
|
{{else}}
|
|
<th> </th>
|
|
{{end}}
|
|
{{range $.Builders | builderSpans}}
|
|
<th {{if (unsupportedOS .OS)}}class="unsupported"{{end}} colspan="{{.N}}">{{.OS}}</th>
|
|
{{end}}
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
<tr>
|
|
{{if $.Package.Path}}
|
|
<th class="result arch">repo</th>
|
|
<th class="result arch">{{$.Dashboard.Name}}</th>
|
|
{{else}}
|
|
<th> </th>
|
|
{{end}}
|
|
{{range $.Builders}}
|
|
<th class="result arch{{if (unsupportedOS (builderOS .))}} unsupported{{end}}" title="{{.}}">{{builderSubheading .}}</th>
|
|
{{end}}
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
{{range $c := $.Commits}}
|
|
{{range $i, $h := $c.ResultGoHashes}}
|
|
<tr class="commit">
|
|
{{if $i}}
|
|
<td> </td>
|
|
{{else}}
|
|
<td class="hash"><a href="{{repoURL $.Dashboard.Name $c.Hash $.Package.Path}}">{{shortHash $c.Hash}}</a></td>
|
|
{{end}}
|
|
{{if $h}}
|
|
<td class="hash"><a href="{{repoURL $.Dashboard.Name $h ""}}">{{shortHash $h}}</a></td>
|
|
{{end}}
|
|
{{range $.Builders}}
|
|
<td class="result{{if (unsupportedOS (builderOS .))}} unsupported{{end}}">
|
|
{{with $c.Result . $h}}
|
|
{{if .OK}}
|
|
<span class="ok">ok</span>
|
|
{{else}}
|
|
<a href="{{$.Dashboard.RelPath}}log/{{.LogHash}}" class="fail">fail</a>
|
|
{{end}}
|
|
{{else}}
|
|
|
|
{{end}}
|
|
</td>
|
|
{{end}}
|
|
{{if $i}}
|
|
<td> </td>
|
|
<td> </td>
|
|
<td> </td>
|
|
{{else}}
|
|
<td class="user" title="{{$c.User}}">{{shortUser $c.User}}</td>
|
|
<td class="time">{{$c.Time.Format "Mon 02 Jan 15:04"}}</td>
|
|
<td class="desc" title="{{$c.Desc}}">{{shortDesc $c.Desc}}</td>
|
|
{{end}}
|
|
</tr>
|
|
{{end}}
|
|
{{end}}
|
|
</table>
|
|
|
|
{{with $.Pagination}}
|
|
<div class="paginate">
|
|
<a {{if .HasPrev}}href="?{{with $.Package.Path}}repo={{.}}&{{end}}page={{.Prev}}"{{else}}class="inactive"{{end}}>newer</a>
|
|
<a {{if .Next}}href="?{{with $.Package.Path}}repo={{.}}&{{end}}page={{.Next}}"{{else}}class="inactive"{{end}}>older</a>
|
|
<a {{if .HasPrev}}href="."{{else}}class="inactive"{{end}}>latest</a>
|
|
</div>
|
|
{{end}}
|
|
|
|
{{else}}
|
|
<p>No commits to display. Hm.</p>
|
|
{{end}}
|
|
|
|
{{with $.TipState}}
|
|
{{$goHash := .Tag.Hash}}
|
|
{{if .Packages}}
|
|
<h2>
|
|
Sub-repositories at tip
|
|
<small>(<a href="{{repoURL $.Dashboard.Name .Tag.Hash ""}}">{{shortHash .Tag.Hash}}</a>)</small>
|
|
</h2>
|
|
|
|
<table class="build">
|
|
<colgroup class="col-package"></colgroup>
|
|
<colgroup class="col-hash"></colgroup>
|
|
{{range $.Builders | builderSpans}}
|
|
<colgroup class="col-result{{if (unsupportedOS .OS)}} unsupported{{end}}" span="{{.N}}"></colgroup>
|
|
{{end}}
|
|
<colgroup class="col-user"></colgroup>
|
|
<colgroup class="col-time"></colgroup>
|
|
<colgroup class="col-desc"></colgroup>
|
|
<tr>
|
|
<!-- extra row to make alternating colors use dark for first result -->
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
{{range $.Builders | builderSpans}}
|
|
<th {{if (unsupportedOS .OS)}}class="unsupported"{{end}} colspan="{{.N}}">{{.OS}}</th>
|
|
{{end}}
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<th></th>
|
|
{{range $.Builders}}
|
|
<th class="result arch{{if (unsupportedOS (builderOS .))}} unsupported{{end}}" title="{{.}}">{{builderSubheading .}}</th>
|
|
{{end}}
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
{{range $pkg := .Packages}}
|
|
<tr class="commit">
|
|
<td><a title="{{.Package.Path}}" href="?repo={{.Package.Path}}">{{.Package.Name}}</a></td>
|
|
<td class="hash">
|
|
{{$h := $pkg.Commit.Hash}}
|
|
<a href="{{repoURL $.Dashboard.Name $h $pkg.Commit.PackagePath}}">{{shortHash $h}}</a>
|
|
</td>
|
|
{{range $.Builders}}
|
|
<td class="result{{if (unsupportedOS (builderOS .))}} unsupported{{end}}">
|
|
{{with $pkg.Commit.Result . $goHash}}
|
|
{{if .OK}}
|
|
<span class="ok">ok</span>
|
|
{{else}}
|
|
<a href="{{$.Dashboard.RelPath}}log/{{.LogHash}}" class="fail">fail</a>
|
|
{{end}}
|
|
{{else}}
|
|
|
|
{{end}}
|
|
</td>
|
|
{{end}}
|
|
{{with $pkg.Commit}}
|
|
<td class="user" title="{{.User}}">{{shortUser .User}}</td>
|
|
<td class="time">{{.Time.Format "Mon 02 Jan 15:04"}}</td>
|
|
<td class="desc" title="{{.Desc}}">{{shortDesc .Desc}}</td>
|
|
{{end}}
|
|
</tr>
|
|
{{end}}
|
|
</table>
|
|
{{end}}
|
|
{{end}}
|
|
|
|
</body>
|
|
</html>
|