|
|
|
@ -12,12 +12,17 @@ matrix: |
|
|
|
branches: |
|
|
|
branches: |
|
|
|
only: |
|
|
|
only: |
|
|
|
- master |
|
|
|
- master |
|
|
|
|
|
|
|
jobs: |
|
|
|
|
|
|
|
include: |
|
|
|
|
|
|
|
- stage: deploy |
|
|
|
|
|
|
|
julia: 0.6 |
|
|
|
|
|
|
|
os: linux |
|
|
|
|
|
|
|
script: |
|
|
|
|
|
|
|
- julia -e 'Pkg.clone(pwd()); Pkg.build("Literate"); Pkg.add("Documenter"); cd(Pkg.dir("Literate")); include("docs/make.jl")' |
|
|
|
notifications: |
|
|
|
notifications: |
|
|
|
email: false |
|
|
|
email: false |
|
|
|
git: |
|
|
|
git: |
|
|
|
depth: 99999999 |
|
|
|
depth: 99999999 |
|
|
|
after_success: |
|
|
|
after_success: |
|
|
|
# build docs |
|
|
|
|
|
|
|
- julia -e 'Pkg.add("Documenter"); Pkg.checkout("Documenter"); cd(Pkg.dir("Literate")); include("docs/make.jl")' |
|
|
|
|
|
|
|
# push coverage results to Codecov |
|
|
|
# push coverage results to Codecov |
|
|
|
- julia -e 'cd(Pkg.dir("Literate")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' |
|
|
|
- julia -e 'cd(Pkg.dir("Literate")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' |
|
|
|
|