Skip to content

Commit

Permalink
Cap Documenter.jl to 0.19 on Travis (#21)
Browse files Browse the repository at this point in the history
Documenter 0.20 will introduce breaking changes that will invalidate
existing make.jl setups. This commit makes sure that automatic Travis
builds will not use 0.20 automatically, in order to avoid sudden
documentation deployment failures once Documenter 0.20 gets tagged.

This commit has been generated by a script.
  • Loading branch information
mortenpi authored and Ben J. Ward committed Oct 17, 2018
1 parent 54319fd commit 8d3e673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ notifications:
email: false
after_success:
# push coverage results to Codecov
- julia -e 'using Pkg; Pkg.add("Documenter"); Pkg.add("Coverage"); Pkg.add("BioAlignments"); Pkg.add("BioSequences")'
- julia -e 'using Pkg; ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps); Pkg.add("Coverage"); Pkg.add("BioAlignments"); Pkg.add("BioSequences")'
- julia -e 'using Coverage; import BioAlignments; cd(dirname(dirname(pathof(BioAlignments)))); Codecov.submit(Codecov.process_folder())'
- julia --color=yes -e 'import BioAlignments; cd(dirname(dirname(pathof(BioAlignments)))); include(joinpath("docs", "make.jl"))'

0 comments on commit 8d3e673

Please sign in to comment.