2016-03-22 19:58:58 +00:00
|
|
|
# Documentation: http://docs.travis-ci.com/user/languages/julia/
|
|
|
|
language: julia
|
|
|
|
os:
|
|
|
|
- linux
|
2017-02-21 22:04:30 +00:00
|
|
|
# - osx
|
2016-03-22 19:58:58 +00:00
|
|
|
julia:
|
2017-03-14 15:20:56 +00:00
|
|
|
- 0.6
|
2016-03-22 19:58:58 +00:00
|
|
|
# uncomment the following lines to override the default test script
|
2016-10-25 20:35:02 +00:00
|
|
|
script:
|
2017-01-16 00:46:50 +00:00
|
|
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
|
|
|
- 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"))'
|