-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
22 lines (20 loc) · 929 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
julia:
- 1.0
- nightly
notifications:
email: false
before_script:
- julia -e 'import Pkg; Pkg.clone("https://github.com/JuliaRecsys/ContextCF.jl/");'
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd()); Pkg.build("ContextDatasetsCF"); Pkg.test("ContextDatasetsCF"; coverage=true)
after_success:
- julia -e 'import Pkg; ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps)'
- julia -e 'import Pkg; cd(Pkg.dir("ContextDatasetsCF")); include(joinpath("docs", "make.jl"))'
# push coverage results to Coverall
- julia -e 'import Pkg; cd(Pkg.dir("ContextDatasetsCF")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'