Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeConway committed Jul 3, 2015
1 parent 2e2347b commit 215ed43
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,37 @@ notifications:
email:
on_success: change
on_failure: change


before_install:
- curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
- chmod 755 ./travis-tool.sh
- ./travis-tool.sh bootstrap

install:
## For installing all CRAN dependencies using DESCRIPTION
- ./travis-tool.sh install_deps

## For installing all Bioconductor dependencies using DESCRIPTION
- ./travis-tool.sh install_bioc_deps

# ## Install Github packages
# - ./travis-tool.sh install_github jimhester/covr

env:
global:
- BIOC_USE_DEVEL="FALSE" ## Use the current release version
- R_BUILD_ARGS="--no-build-vignettes --no-manual"
- R_CHECK_ARGS="--no-build-vignettes --no-manual --timings" ## do not build vignettes or manual
- _R_CHECK_TIMINGS_="0" ## get the timing information for the examples for all of your functions

script:
- travis_wait ./travis-tool.sh run_tests

after_failure:
- ./travis-tool.sh dump_logs

## Check how much time was spent in each of the example pages
after_script:
- ./travis-tool.sh dump_logs_by_extension "timings"
- ./travis-tool.sh dump_sysinfo

0 comments on commit 215ed43

Please sign in to comment.