-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathreport.html.st
More file actions
123 lines (108 loc) · 2.65 KB
/
Copy pathreport.html.st
File metadata and controls
123 lines (108 loc) · 2.65 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
$hackageCssTheme()$
<title>Hackage: Build #$report.0$ for $pkgid$</title>
</head>
<body>
$hackagePageHeader()$
<div id="content">
<h2>Build #$report.0$ for <a href="/package/$pkgid$">$pkgid$</a></h2>
<p style="font-size: small">[<a href="/package/$pkgid$/reports">all reports</a>]</p>
<table class="fancy">
<tr>
<th>Package</th>
<td>$report.1.package$</td>
</tr>
</table>
<table class="fancy">
<tr>
<th>Install</th>
<td>$report.1.installOutcome$</td>
</tr>
<tr>
<th>Docs</th>
<td>$report.1.docsOutcome$</td>
</tr>
<tr>
<th>Tests</th>
<td>$report.1.testsOutcome$</td>
</tr>
</table>
<table class="fancy">
<tr>
<th>Time submitted</th>
<td>
$if(report.1.time)$
$report.1.time$
$else$
<i>unknown</i>
$endif$
</td>
</tr>
<tr>
<th>Compiler</th>
<td>$report.1.compiler$</td>
</tr>
<tr>
<th>OS</th>
<td>$report.1.os$</td>
</tr>
<tr>
<th>Arch</th>
<td>$report.1.arch$</td>
</tr>
<tr>
<th>Dependencies</th>
<td>$report.1.dependencies; separator=", "$</td>
</tr>
<tr>
<th>Flags</th>
<td>
$if(first(report.1.flagAssignment))$
$report.1.flagAssignment; separator=" "$
$else$
<i>none</i>
$endif$
</td>
</tr>
</table>
<h3>Code Coverage</h3>
$if(covg)$
<table class="fancy">
<tr><th colspan="2">expressions</th><td>$covg.0.0$% ($covg.0.1$/$covg.0.2$)</td></tr>
<tr><th colspan="1" rowspan="3">boolean</th><th>guards</th><td>$covg.1.0$% ($covg.1.1$/$covg.1.2$) </td></tr>
<tr><th>conditions</th><td> $covg.2.0$% ($covg.2.1$/$covg.2.2$) </td></tr>
<tr><th>qualifiers</th><td>$covg.3.0$% ($covg.3.1$/$covg.3.2$)</td></tr>
<tr><th colspan="2">alternatives</th><td>$covg.4.0$% ($covg.4.1$/$covg.4.2$)</td></tr>
<tr><th colspan="2">local declarations</th><td>$covg.5.0$% ($covg.5.1$/$covg.5.2$)</td></tr>
<tr><th colspan="2">top-level declarations</th><td>$covg.6.0$% ($covg.6.1$/$covg.6.2$)</td></tr>
</table>
$else$
<p>No Code Coverage was submitted for this report.</p>
$endif$
<h3>Build log</h3>
$if(log)$
<p style="font-size: small">[<a href="/package/$pkgid$/reports/$report.0$/log">view raw</a>]</p>
<pre>
$log$</pre>
$else$
<p>No log was submitted for this report.</p>
$endif$
<h3>Test log</h3>
$if(test)$
<p style="font-size: small">[<a href="/package/$pkgid$/reports/$report.0$/test">view raw</a>]</p>
<pre>
$test$</pre>
$else$
<p>No test log was submitted for this report.</p>
$endif$
<h3>Test report log</h3>
$if(testReport)$
<pre>
$testReport$</pre>
$else$
<p>No test report log was submitted for this report.</p>
$endif$
</div>
</body></html>