forked from denizyuret/AutoGrad.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (22 loc) · 709 Bytes
/
.travis.yml
File metadata and controls
25 lines (22 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language: julia
## https://docs.travis-ci.com/user/languages/julia
## If you leave the julia: key out of your .travis.yml, Travis CI will use the most recent release.
julia:
- 0.4
- 0.5
- nightly
os:
- linux
- osx
matrix:
allow_failures:
- julia: nightly ## getting too many warnings
notifications:
email: false
## uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("Knet"); Pkg.test("Knet"; coverage=true)'
# after_success:
# - julia -e 'Pkg.add("Documenter")'
# - julia -e 'cd(Pkg.dir("Knet")); include(joinpath("docs", "make.jl"))'