mirror of https://github.com/fredrikekre/HYPRE.jl
Julia interface to hypre linear solvers (https://github.com/hypre-space/hypre)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
859 B
42 lines
859 B
const liveserver = "liveserver" in ARGS |
|
|
|
if liveserver |
|
using Revise |
|
Revise.revise() |
|
end |
|
|
|
using Documenter |
|
using HYPRE |
|
using Changelog |
|
|
|
# Changelog |
|
Changelog.generate( |
|
Changelog.Documenter(), |
|
joinpath(@__DIR__, "..", "CHANGELOG.md"), |
|
joinpath(@__DIR__, "src", "changelog.md"); |
|
repo = "Ferrite-FEM/Ferrite.jl", |
|
) |
|
|
|
makedocs( |
|
sitename = "HYPRE.jl", |
|
format = Documenter.HTML( |
|
canonical = "https://fredrikekre.github.io/HYPRE.jl/stable", |
|
), |
|
modules = [HYPRE], |
|
pages = Any[ |
|
"Home" => "index.md", |
|
hide("Changelog" => "changelog.md"), |
|
"matrix-vector.md", |
|
"solvers-preconditioners.md", |
|
"libhypre.md", |
|
"api.md", |
|
], |
|
draft = liveserver, |
|
) |
|
|
|
if !liveserver |
|
deploydocs( |
|
repo = "github.com/fredrikekre/HYPRE.jl.git", |
|
push_preview = true, |
|
) |
|
end
|
|
|