forked from LilithHafner/Chairmarks.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
35 lines (32 loc) · 1.1 KB
/
make.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using Chairmarks
using Documenter
using DocumenterVitepress
DocMeta.setdocmeta!(Chairmarks, :DocTestSetup, :(using Chairmarks); recursive=true)
makedocs(;
authors="Lilith Orion Hafner <[email protected]> and contributors",
repo=Remotes.GitHub("LilithHafner", "Chairmarks.jl"),
sitename="Chairmarks.jl",
format=DocumenterVitepress.MarkdownVitepress(
repo = "https://github.com/LilithHafner/Chairmarks.jl",
devbranch = "main",
devurl = "dev",
deploy_url = "chairmarks.lilithhafner.com"),
pages=[
"Home" => "index.md",
"Why use Chairmarks?" => "why.md",
"Tutorial" => "tutorial.md",
"How To" => [
"migrate from BenchmarkTools" => "migration.md",
"install Chairmarks ergonomically" => "autoload.md",
"perform automated regression testing on a package" => "regressions.md",
],
"Reference" => "reference.md",
"Explanations" => "explanations.md",
],
linkcheck=true,
)
deploydocs(;
repo="github.com/LilithHafner/Chairmarks.jl",
devbranch="main",
push_preview=true,
)