Flux.jl/.travis.yml

33 lines
688 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:
2019-11-04 14:38:42 +00:00
- 1.3
2020-04-06 11:20:28 +00:00
- 1
2018-08-11 13:50:11 +00:00
- nightly
2019-01-10 13:54:17 +00:00
2020-03-02 11:23:36 +00:00
notifications:
email: false
2019-01-10 13:54:17 +00:00
jobs:
include:
- stage: "Documentation"
2020-05-04 12:31:33 +00:00
julia: 1.3
2019-01-10 13:54:17 +00:00
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
2020-03-02 11:23:36 +00:00
allow_failures:
- julia: nightly
## uncomment the following lines to override the default test script
script:
- julia --color=yes -e 'using Pkg; Pkg.activate(); Pkg.instantiate(); Pkg.test()'