Weave.jl/.travis.yml

30 lines
800 B
YAML
Raw Normal View History

language: julia
2020-03-03 18:05:04 +01:00
julia:
2020-03-26 13:42:31 +01:00
- 1 # current stable
- 1.0 # lts
2020-03-04 11:37:36 +01:00
- nightly
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())'
2020-03-04 11:37:36 +01:00
jobs:
2020-03-04 11:37:36 +01:00
allow_failures:
- julia: nightly
include:
- stage: "Documentation"
2020-03-26 13:42:31 +01:00
julia: 1
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
2020-03-04 11:37:36 +01:00
notifications:
email: false