Skip to content

Commit 7725e34

Browse files
committed
docgen: Add a top-level index.html
Create a simple top level index so that people can follow the link given in the build log. Signed-off-by: David Brown <[email protected]>
1 parent 6d9a313 commit 7725e34

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
cd ..
5959
mkdir docout
6060
mv build/rust/target/thumbv7em-none-eabi/doc docout/nostd
61+
cp docs/top-index.html docout/index.html
6162
6263
- name: Build build documentation
6364
working-directory: zephyr-rust-lang

docs/top-index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Documentation Index</title>
6+
</head>
7+
<body>
8+
<h1>Documentation Index</h1>
9+
<ul>
10+
<li><a href="nostd/zephyr/index.html">zephyr crate Documentation</a></li>
11+
<li><a href="std/zephyr_build/index.html">zephyr_build support Documentation</a></li>
12+
</ul>
13+
</body>
14+
</html>

0 commit comments

Comments
 (0)