Skip to content

Commit

Permalink
Update .travis.yml to current default
Browse files Browse the repository at this point in the history
* Adds coverage
  • Loading branch information
kmsquire committed Dec 22, 2016
1 parent 72316a5 commit e95f40f
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- osx
- linux
- osx
julia:
- release
- nightly
- 0.5
notifications:
email: false
# 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("MsgPack"); Pkg.test("MsgPack"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("MsgPack")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("MsgPack")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

0 comments on commit e95f40f

Please sign in to comment.