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.

33 lines
788 B

## Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
julia:
- 0.6
- 0.7
- nightly
matrix:
allow_failures:
- julia: nightly
- julia: 0.7
branches:
only:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
jobs:
include:
- stage: deploy
julia: 0.6
os: linux
script:
- julia -e 'Pkg.clone(pwd()); Pkg.build("Literate")'
- julia -e 'Pkg.add("Documenter"); Pkg.add("Plots"); Pkg.build("Plots")'
- julia -e 'cd(Pkg.dir("Literate")); include("docs/make.jl")'
notifications:
email: false
git:
depth: 99999999
after_success:
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("Literate")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'