-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.jl
30 lines (27 loc) · 912 Bytes
/
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
ENV["GKSwstype"] = "100"
using RandomLinearAlgebraSolvers
using Documenter
DocMeta.setdocmeta!(
RandomLinearAlgebraSolvers,
:DocTestSetup,
:(using RandomLinearAlgebraSolvers);
recursive = true,
)
makedocs(;
modules = [RandomLinearAlgebraSolvers],
authors = "Tangi Migot tangi.migot@gmail.com",
repo = "https://github.com/tmigot/RandomLinearAlgebraSolvers.jl/blob/{commit}{path}#{line}",
sitename = "RandomLinearAlgebraSolvers.jl",
format = Documenter.HTML(;
prettyurls = get(ENV, "CI", "false") == "true",
canonical = "https://tmigot.github.io/RandomLinearAlgebraSolvers.jl",
assets = String[],
),
pages = [
"Home" => "index.md",
"Benchmark overdetermined" => "rectangular.md",
"Benchmark sdp matrices" => "sdp.md",
"Benchmark MatrixDepot" => "matrixdepot.md",
],
)
deploydocs(; repo = "github.com/tmigot/RandomLinearAlgebraSolvers.jl", devbranch = "main")