Skip to content

Commit

Permalink
debug [skip travis]
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Oct 23, 2018
1 parent 7622c55 commit d243295
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions doc/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ end

const render_pdf = "pdf" in ARGS
const buildroot = get(ENV, "BUILDROOT", joinpath(@__DIR__, ".."))

@show haskey(ENV, "BUILDROOT")
haskey(ENV, "BUILDROOT") && (@show ENV["BUILDROOT"])
@show buildroot

makedocs(
build = joinpath(buildroot, "doc", "_build", (render_pdf ? "pdf" : "html"), "en"),
modules = [Base, Core, BuildSysImg, [Base.root_module(Base, stdlib.stdlib) for stdlib in STDLIB_DOCS]...],
Expand All @@ -167,6 +172,8 @@ makedocs(
assets = ["assets/julia-manual.css", ]
)

@show readdir(joinpath(buildroot, "doc", "_build"))

# Only deploy docs from 64bit Linux to avoid committing multiple versions of the same
# docs from different workers.
if "deploy" in ARGS && Sys.ARCH === :x86_64 && Sys.KERNEL === :Linux
Expand Down

0 comments on commit d243295

Please sign in to comment.