-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
34 lines (30 loc) · 1.01 KB
/
.travis.yml
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
26
27
28
29
30
31
32
33
34
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
codecov: true
coveralls: true
os:
- linux
# - osx
julia:
- 1.0
- 1.2
notifications:
email:
recipients:
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
env:
global:
- DISABLE_AMEND_COVERAGE_FROM_SRC=yes
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
after_success:
- julia -e 'cd(Pkg.dir("KernelMethods")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'cd(Pkg.dir("KernelMethods")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'