Files
JuliaFEM.jl/.travis.yml
T
Jukka Aho d29927172c Update automatic document generation
It looks document generation proceduce has slightly changed.
docs/Project.toml is defining dependencies for document generation and
they are not explicitly given in `travis.yml`.
2019-09-13 17:06:56 +03:00

31 lines
598 B
YAML

language: julia
os:
- linux
julia:
- 1.2
- 1.3
- nightly
addons:
apt:
packages:
- hdf5-tools
matrix:
allow_failures:
- julia: nightly
jobs:
include:
- stage: "Documentation"
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
after_success: skip
after_success:
- julia -e 'cd(Pkg.dir("JuliaFEM")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'