Flux.jl/.travis.yml

30 lines
659 B
YAML
Raw Normal View History

# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
2019-01-10 13:54:17 +00:00
os:
- linux
2017-02-21 22:04:30 +00:00
# - osx
2019-01-10 13:54:17 +00:00
julia:
2018-08-11 13:50:11 +00:00
- 1.0
- nightly
2019-01-10 13:54:17 +00:00
2018-08-11 14:46:01 +00:00
matrix:
allow_failures:
- julia: nightly
2019-01-10 13:54:17 +00:00
jobs:
include:
- stage: "Documentation"
julia: 1.0
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
2019-01-29 09:07:46 +00:00
## uncomment the following lines to override the default test script
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'