Skip to content

Commit

Permalink
Merge pull request #177 from JuliaRobotics/docs/refactor
Browse files Browse the repository at this point in the history
build docs
  • Loading branch information
dehann committed Nov 6, 2018
2 parents 6a2dbbd + e1ce7b6 commit 23d2707
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .travis.yml
Expand Up @@ -20,6 +20,16 @@ script:
- julia --check-bounds=yes -e 'using Pkg; Pkg.clone(pwd()); Pkg.develop("Mongoc"); Pkg.develop("CloudGraphs"); Pkg.test("Caesar"; coverage=true)'

after_success:
- julia -e 'using Pkg; cd(Pkg.dir("Caesar")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
- julia -e 'using Pkg; Pkg.add("Documenter")'
- julia -e 'using Pkg; cd(Pkg.dir("Caesar")); include(joinpath("docs", "make.jl"))'
- julia --project=coverage/ -e 'using Pkg; Pkg.instantiate()'
- julia --project=coverage/ coverage/coverage.jl

jobs:
include:
- stage: "Documentation"
julia: 1.0
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
Pkg.develop(PackageSpec(path=pwd()))'
- julia --project=docs/ docs/make.jl
after_success: skip

0 comments on commit 23d2707

Please sign in to comment.