web sockets and live logging

This commit is contained in:
2025-01-14 00:34:24 -05:00
parent 68005e8492
commit 16e62ff901
10 changed files with 185 additions and 10 deletions

View File

@@ -9,12 +9,13 @@
<%- include("navigation", locals) %>
<div class="content">
<h1>Build #<%= build.id %></h1>
<h2><%= build.status %></h2>
<h2 id="buildStatus"><%= build.status %></h2>
<div class="grid-2col">
<label>Repo</label> <span><%= build.repo %></span>
<label>Commit</label> <span><% if (build.commit) { %><%= build.commit %><% } else { %>latest<% } %></span>
<label>Patch</label> <span><% if (build.patch) { %><a href="/build/<%= build.id %>/patch">patch file</a><% } else { %>none<% } %></span>
<label>Distro</label> <span><%= build.distro %></span>
<label>Dependencies</label> <span><%= build.dependencies %></span>
<label>Start time</label> <span><%= build.startTime %></span>
</div>
<p><a href="/build/<%= build.id %>/logs">Full logs</a></p>
@@ -23,7 +24,16 @@
<p><%= line %></p>
<% }) %>
</div>
<% if (!ended) { %>
<label id="followCheckmarkContainer" title="Follow logs">
<input type="checkbox" id="followCheckmark" />
</label>
<% } %>
</div>
<%- include("footer", locals) %>
<% if (!ended) { %>
<script src="/assets/js/build.js?v1" nonce="<%= cspNonce %>"></script>
<% } %>
</body>
</html>

View File

@@ -9,11 +9,11 @@
</div>
<nav>
<ul class="sidebar_links">
<li><a href="/build">New Build</a></li>
<li><a href="/">All Builds</a></li>
<li><a href="/?status=error">Failed Builds</a></li>
<li><a href="/?distro=arch">Arch Builds</a></li>
<li><a href="/?distro=artix">Artix Builds</a></li>
<li><a href="/build">New Build</a></li>
</ul>
</nav>
</div>