File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change
1
+ # # Documentation: http://docs.travis-ci.com/user/languages/julia/
1
2
language : julia
2
3
os :
3
4
- linux
6
7
- 0.7
7
8
- 1.0
8
9
- nightly
9
- notifications :
10
- email : false
11
- # script: # default script is equivalent to the following
12
- # - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
13
- # - julia -e 'Pkg.clone(pwd()); Pkg.build("FileIO"); Pkg.test("FileIO"; coverage=true)'
10
+ matrix :
11
+ allow_failures :
12
+ - julia : nightly
13
+ branches :
14
+ only :
15
+ - master
16
+ - /^v\d+\.\d+(\.\d+)?(-\S*)?$/
14
17
after_success :
15
- - julia -e 'cd(Pkg.dir("FileIO")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
18
+ - if [[ $TRAVIS_JULIA_VERSION = 1.0 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then
19
+ julia --project=test/coverage -e 'using Pkg; Pkg.instantiate();
20
+ using Coverage; Codecov.submit(Codecov.process_folder())';
21
+ fi
You can’t perform that action at this time.
0 commit comments