Skip to content
Prev 9952 / 21312 Next

[Bioc-devel] Fwd: BiocInstaller::useDevel() Error: 'devel' version requires a more recent R

Hi Kevin,

I have been using the following setup in my .travis.yml file. Travis CI
should automatically use the correct version of R for the Bioconductor
version specified in the "r: bioc-devel" line (you can replace this with
"r: bioc-release" to use the release version). There is some more
information here: https://docs.travis-ci.com/user/languages/r/ (see the
Bioconductor section).

language: r
r: bioc-devel
sudo: false
cache: packages
r_github_packages:
  - jimhester/covr
after_success:
  - Rscript -e 'covr::codecov()'

The additional "covr" lines are for checking unit test code coverage with
codecov.

Lukas
On Thu, Oct 20, 2016 at 4:51 PM, Kevin RUE <kevinrue67 at gmail.com> wrote: