Flux.jl/.travis.yml

17 lines
602 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:
2017-03-14 15:20:56 +00:00
- 0.6
# uncomment the following lines to override the default test script
2017-08-22 23:29:38 +00:00
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'Pkg.clone("https://github.com/FluxML/NNlib.jl")'
- julia -e 'Pkg.clone(pwd()); Pkg.build("Flux"); Pkg.test("Flux"; coverage=true)'
2017-01-16 01:01:32 +00:00
after_success:
2017-01-17 20:04:01 +00:00
# - julia -e 'Pkg.add("Documenter")'
- julia -e 'Pkg.clone("https://github.com/MikeInnes/Documenter.jl")'
2017-01-16 00:46:50 +00:00
- julia -e 'cd(Pkg.dir("Flux")); include(joinpath("docs", "make.jl"))'