Verybasic functionality

main
Simon Quigley 4 weeks ago
parent b02e362b4d
commit 460cb9428b

2
.gitignore vendored

@ -0,0 +1,2 @@
output
output.tmp

@ -0,0 +1,14 @@
#!/bin/bash
# Create a temporary output directory
mkdir output.tmp
# Copy all HTML files over
cp -vr html/* output.tmp
# Copy the logs
mkdir output.tmp/logs
rsync -av --delete /var/log/lubuntu-ci/* output.tmp/logs/
# Make the output directory live
rsync -av --delete output.tmp/* output/

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="container text-center mt-2">
<h1>Welcome to the Lubuntu CI!</h1>
<p>This page is very basic for now, but you can view logs here.</p>
</div>
</body>
</html>
Loading…
Cancel
Save