Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix docsy problems #49

Merged
merged 2 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
TZ: America/Los_Angeles
run: |
git clone --depth 1 --branch v0.11.0 https://github.com/google/docsy.git themes/docsy
sed -i 's/fixed/relative/g' themes/docsy/assets/scss/_nav.scss
git clone --depth 1 --branch 6.7.0 https://github.com/FortAwesome/Font-Awesome.git themes/github.com/FortAwesome/Font-Awesome
git clone --depth 1 --branch v5.3.3 https://github.com/twbs/bootstrap.git themes/github.com/twbs/bootstrap
hugo \
Expand Down
6 changes: 1 addition & 5 deletions docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ title = 'kci-dev'
date = 2024-01-14T07:07:07+01:00
+++

<br>
<br>
<br>
<br>

# kci-dev

kci-dev is a cmdline tool for interact with a enabled KernelCI server
Expand Down Expand Up @@ -97,3 +92,4 @@ kci-dev --settings /path/to/.kci-dev.toml
### results

- [results](results)

5 changes: 0 additions & 5 deletions docs/checkout.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ title = 'checkout'
date = 2024-01-14T07:07:07+01:00
+++

<br>
<br>
<br>
<br>

## checkout

This command allow to test arbitary commit on the KernelCI Pipeline instance. This might be useful in several cases:
Expand Down
5 changes: 0 additions & 5 deletions docs/results.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ title = 'results'
date = 2024-01-14T07:07:07+01:00
+++

<br>
<br>
<br>
<br>

### results

This command will show the test result by node id.
Expand Down
5 changes: 0 additions & 5 deletions docs/testretry.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ title = 'testretry'
date = 2024-01-14T07:07:07+01:00
+++

<br>
<br>
<br>
<br>

### testretry

This command will retry the failed tests. In some cases tests may fail due to network issues, hardware problems,
Expand Down
38 changes: 33 additions & 5 deletions hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,43 @@ title = 'kci-dev'
description = 'kci-dev is a cmdline tool for interact with a enabled KernelCI server.'
contentDir = "docs/"

pygmentsCodeFences = true
pygmentsUseClasses = false
pygmentsUseClassic = false
pygmentsStyle = "tango"

[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = "tango"

[params.ui]
sidebar_menu_compact = false
breadcrumb_disable = false
sidebar_search_disable = false
navbar_logo = true
sidebar_search_disable = true
navbar_logo = false
footer_about_enable = true
navbar_translucent_over_cover_disable = true
ul_show = 1
sidebar_menu_foldable = true
sidebar_cache_limit = 1000


[menu]
[[menu.main]]
name = "Home"
pageRef = "/"
weight = 10

[[menu.main]]
name = "checkout"
pageRef = "checkout/"
weight = 20
[[menu.main]]
name = "testretry"
pageRef = "testretry/"
weight = 20

[[menu.main]]
name = "results"
url = "results/"
weight = 20
Loading