aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/non-release-index.html.j2120
1 files changed, 69 insertions, 51 deletions
diff --git a/scripts/non-release-index.html.j2 b/scripts/non-release-index.html.j2
index c11f664..1b7dbc2 100644
--- a/scripts/non-release-index.html.j2
+++ b/scripts/non-release-index.html.j2
@@ -1,59 +1,77 @@
-<!DOCTYPE html>
-<html>
+<!doctype html>
+<html lang="en">
+
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Index of autobuilder test results</title>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
+ integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.min.js"
+ integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
+ crossorigin="anonymous"></script>
</head>
+
<body>
-
-<table class="table is-narrow is-striped">
-<thead>
-<tr>
- <th>Build</th>
- <th>Type</th>
- <th>Branch</th>
- <th>Test Results Report</th>
- <th>Performance Reports</th>
- <th>ptest Logs</th>
- <th>Buildhistory</th>
- <th>Host Data</th>
-</tr>
-</thead>
-<tdata>
-{% for entry in entries %}
-<tr>
- <td><a href="{{entry[1]}}">{{entry[0]}}</a></td>
- <td>{% if entry[2] %} {{entry[2]}}{% endif %}</td>
- <td>{% if entry[4] %} {{entry[4]}}{% endif %}</td>
- <td>
- {% if entry[3] %}<a href="{{entry[3]}}">Report</a>{% endif -%}
- {% if entry[9] %}<br><a href="{{entry[9]}}">Regressions</a>{% endif %}
- </td>
- <td>
- {% for perfrep in entry[6] %}
- <a href="{{perfrep[0]}}">{{perfrep[1]}}</a>
- {% endfor %}
- </td>
- <td>
- {% for ptest in entry[7] %}
- <a href="{{ptest[0]}}">{{ptest[1]}}</a>
- {% endfor %}
- </td>
- <td>
- {% for bh in entry[5] %}
- <a href="{{bh[0]}}">{{bh[1]}}</a>
- {% endfor %}
- </td>
- <td>
- {% for hd in entry[8] %}
- <a href="{{hd[0]}}">{{hd[1]}}</a>
- {% endfor %}
- </td>
-</tr>
-{% endfor %}
-</tdata>
-</table>
+ <div class="container">
+ <h1 class="display-4">Non-Release Autobuilder Artifacts</h1>
+
+ <h2>Metrics</h2>
+ <ul>
+ <li><a href="./patchmetrics/">Patch Metrics (oe-core)</a></li>
+ <li><a href="./patchmetrics-meta-oe/">Patch Metrics (meta-oe)</a></li>
+ <li><a href="./abint/">Autobuilder Intermittent Bugs</a></li>
+ </ul>
+
+ <h2>Test Results</h2>
+ <table class="table table-striped">
+ <thead>
+ <tr>
+ <th scope="col">Build</th>
+ <th scope="col">Type</th>
+ <th scope="col">Branch</th>
+ <th scope="col">Test Results Report</th>
+ <th scope="col">Performance Reports</th>
+ <th scope="col">ptest Logs</th>
+ <th scope="col">Buildhistory</th>
+ <th scope="col">Host Data</th>
+ </tr>
+ </thead>
+ <tbody>
+ {% for entry in entries %}
+ <tr>
+ <td scope="row"><a href="{{entry[1]}}">{{entry[0]}}</a></td>
+ <td>{% if entry[2] %} {{entry[2]}}{% endif %}</td>
+ <td>{% if entry[4] %} {{entry[4]}}{% endif %}</td>
+ <td>
+ {% if entry[3] %}<a href="{{entry[3]}}">Report</a>{% endif -%}
+ {% if entry[9] %}<br><a href="{{entry[9]}}">Regressions</a>{% endif %}
+ </td>
+ <td>
+ {% for perfrep in entry[6] %}
+ <a href="{{perfrep[0]}}">{{perfrep[1]}}</a>
+ {% endfor %}
+ </td>
+ <td>
+ {% for ptest in entry[7] %}
+ <a href="{{ptest[0]}}">{{ptest[1]}}</a>
+ {% endfor %}
+ </td>
+ <td>
+ {% for bh in entry[5] %}
+ <a href="{{bh[0]}}">{{bh[1]}}</a>
+ {% endfor %}
+ </td>
+ <td>
+ {% for hd in entry[8] %}
+ <a href="{{hd[0]}}">{{hd[1]}}</a>
+ {% endfor %}
+ </td>
+ </tr>
+ {% endfor %}
+ </tbody>
+ </table>
+ </div>
</body>
+
</html>