2019-11-08 17:28:02 +00:00
|
|
|
# Documentation: http://docs.travis-ci.com/user/languages/julia
|
|
|
|
language: julia
|
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
julia:
|
|
|
|
- 1.0
|
2020-03-23 14:26:24 +00:00
|
|
|
- 1.4
|
2019-11-08 17:28:02 +00:00
|
|
|
- nightly
|
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
- windows
|
|
|
|
arch:
|
|
|
|
- x64
|
2020-05-27 20:05:47 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- ~/.julia/artifacts
|
2019-11-08 17:28:02 +00:00
|
|
|
jobs:
|
|
|
|
fast_finish: true
|
|
|
|
allow_failures:
|
|
|
|
- julia: nightly
|
|
|
|
include:
|
|
|
|
- stage: Documentation
|
2020-05-27 20:17:25 +00:00
|
|
|
julia: 1
|
2020-01-23 21:03:11 +00:00
|
|
|
script: |
|
|
|
|
julia --project=docs -e '
|
|
|
|
using Pkg
|
|
|
|
Pkg.develop(PackageSpec(path=pwd()))
|
|
|
|
Pkg.instantiate()
|
|
|
|
include("docs/make.jl")'
|
2019-11-08 17:28:02 +00:00
|
|
|
after_success: skip
|