update and slightly restructure website

This commit is contained in:
Stone Tickle 2026-01-18 14:26:01 -05:00
parent ffca4b2a4e
commit 6f95f281c1
6 changed files with 32 additions and 11 deletions

View File

@ -10,7 +10,7 @@ SPDX-License-Identifier: GPL-3.0-only
<title>muon ci</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/svg+xml" href="muon_logo.svg" />
<link rel="stylesheet" href="ci-style.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="wrapper">
@ -92,6 +92,17 @@ SPDX-License-Identifier: GPL-3.0-only
</td>
<td></td>
</tr>
<tr>
<td>OmniOS</td>
<td>x86_64</td>
<td>gcc</td>
<td>
<a href="https://github.com/muon-build/muon/actions/workflows/illumos.yml">
<img src="https://github.com/muon-build/muon/actions/workflows/illumos.yml/badge.svg"></img>
</a>
</td>
<td>🧪 </td>
</tr>
<tr>
<td>Solaris 11</td>
<td>sun4u</td>
@ -106,7 +117,7 @@ SPDX-License-Identifier: GPL-3.0-only
<tr>
<td>Windows - msys2</td>
<td>x86_64</td>
<td>gcc, clang</td>
<td>gcc, clang, tcc</td>
<td>
<a href="https://github.com/muon-build/muon/actions/workflows/msys2.yml">
<img src="https://github.com/muon-build/muon/actions/workflows/msys2.yml/badge.svg"></img>
@ -147,7 +158,7 @@ SPDX-License-Identifier: GPL-3.0-only
<script>
async function getStuff() {
response = await fetch('https://muon.build/ci/solaris11/status');
response = await fetch('https://muon.build/ci-results/solaris11/status');
text = await response.text(); // read response body as text
document.getElementById("solaris11Status").innerHTML = text;
}

View File

@ -0,0 +1,13 @@
# SPDX-FileCopyrightText: Stone Tickle <lattis@mochiro.moe>
# SPDX-License-Identifier: GPL-3.0-only
foreach f : [
'index.html',
'style.css',
]
configure_file(
configuration: version_info,
input: f,
output: f,
)
endforeach

View File

@ -10,7 +10,7 @@ SPDX-License-Identifier: GPL-3.0-only
<title>muon</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/svg+xml" href="muon_logo.svg" />
<link rel="stylesheet" href="main.css" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>
@ -45,10 +45,7 @@ SPDX-License-Identifier: GPL-3.0-only
<a href="ircs://irc.libera.chat/#muon">#muon on libera.chat</a>
</div>
<div>
<a href="muon_ci.html">ci</a>
</div>
<div>
<a href="https://play.muon.build">playground</a>
<a href="ci">ci</a>
</div>
<div>
docs

View File

@ -17,11 +17,9 @@ endforeach
foreach f : [
'index.html',
'muon_ci.html',
'man-style.css',
'ci-style.css',
'main.css',
'muon_logo.svg',
'style.css',
]
configure_file(
configuration: version_info,
@ -30,4 +28,6 @@ foreach f : [
)
endforeach
subdir('ci')
summary('website', true)