Flux.jl/.travis.yml

20 lines
579 B
YAML
Raw Normal View History

# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
2017-02-21 22:04:30 +00:00
# - osx
julia:
2018-07-12 19:53:34 +00:00
- 0.7
2018-08-11 13:50:11 +00:00
- 1.0
- nightly
# uncomment the following lines to override the default test script
2018-07-12 19:53:34 +00:00
# script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Flux"); Pkg.test("Flux"; coverage=true)'
2018-08-11 14:46:01 +00:00
matrix:
allow_failures:
- julia: nightly
2017-01-16 01:01:32 +00:00
after_success:
2018-09-05 15:52:50 +00:00
- julia -e 'using Pkg; Pkg.add("Documenter"); Pkg.add("NNlib")'
- julia -e 'using Pkg; cd(Pkg.dir("Flux")); include(joinpath("docs", "make.jl"))'