Skip to content

Commit

Permalink
also have full TeXLive in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tpapp committed Apr 22, 2021
1 parent 2a01b09 commit 0c62e4b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ jobs:
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- run: |
sudo apt-get update && \
sudo apt-get install --no-install-recommends -qq texlive-latex-base git \
texlive-luatex texlive-pictures texlive-latex-extra pdf2svg \
poppler-utils gnuplot-nox wget ca-certificates openssh-client rsync file
- run: |
julia --project=docs -e '
using Documenter: doctest, DocMeta
Expand Down
12 changes: 0 additions & 12 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,3 @@ include("test_elements.jl")
mktempdir() do tmp; cd(tmp) do
include("test_build.jl")
end end

# Build the docs on Julia v1.3
if get(ENV, "TRAVIS_JULIA_VERSION", nothing) == "1.5"
cd(joinpath(@__DIR__, "..")) do
withenv("JULIA_LOAD_PATH" => nothing) do
cmd = `$(Base.julia_cmd()) --depwarn=no --color=yes --project=docs/`
coverage = Base.JLOptions().code_coverage == 0 ? "none" : "user"
run(`$(cmd) -e 'using Pkg; Pkg.instantiate()'`)
run(`$(cmd) --code-coverage=$(coverage) docs/make.jl`)
end
end
end

0 comments on commit 0c62e4b

Please sign in to comment.