mirror of
https://git.sr.ht/~lattis/muon
synced 2026-01-26 08:07:51 +00:00
update and slightly restructure website
This commit is contained in:
parent
ffca4b2a4e
commit
6f95f281c1
@ -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;
|
||||
}
|
||||
13
doc/website/ci/meson.build
Normal file
13
doc/website/ci/meson.build
Normal 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
|
||||
@ -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
|
||||
|
||||
@ -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)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user