Weave.jl/.travis.yml

32 lines
796 B
YAML
Raw Normal View History

language: julia
2020-03-03 18:05:04 +01:00
julia:
2018-08-13 14:06:07 +02:00
- 1.0
2020-03-03 18:05:04 +01:00
- 1.3
- 1.4
2015-01-09 13:17:56 +01:00
matrix:
allow_failures:
2020-03-03 18:05:04 +01:00
- julia: 1.4
- julia: nightly
notifications:
email: false
2020-03-03 18:05:04 +01:00
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
2018-08-13 14:06:07 +02:00
- julia --check-bounds=yes -e 'using Pkg; Pkg.build()'
- xvfb-run julia -e 'using Pkg; Pkg.test("Weave", coverage=true)'
2014-12-06 18:25:27 +01:00
after_success:
2018-08-13 14:06:07 +02:00
- julia -e 'using Pkg; cd(Pkg.dir("Weave")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
jobs:
include:
- stage: "Documentation"
2020-03-03 18:05:04 +01:00
julia: 1.3
os: linux
script:
- julia --project=doc/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- julia --project=doc/ doc/make.jl
after_success: skip