Description
hi all -- opening a discussion ticket, hoping folks will pipe in.
@hadley @eddelbuettel @jimhester @cbarraford -- cc away if you know other interested folks.
currently, we're all hitting some pain because the native R support in travis makes use of sudo
, which means we can't use their container-based infrastructure.
Problem
We need to install a number of prereqs (notably R and LaTeX), which takes time. On top of that, we'd like to save as much time as possible installing user packages, which we do by using marutter's PPA. All of these require sudo
; we could (hopefully?) move the first two into the pre-container step, but the third is still a real problem.
A second constraint is that we want to support multiple R versions (including R-devel).
Option 1: Use our own containers
I think this is what we all want, but Travis doesn't yet support this. So we wait.
Option 2: Build our own image
Here we'd add our own Chef cookbook to travis-ci/travis-cookbooks that installed R and LaTeX, along with whitelisting a large number of packages from the marutter PPA for sudo
-less install. Then we'd fall back to source installs for non-whitelisted binary packages, and be in OK shape.
Our biggest constraint here is that we don't have any feedback from the Travis folks about whether or not they'll actually accept a PR with a new cookbook.
Option 3: Whitelist a large number of packages
We could try adding a large number of R-related packages to their apt whitelist for sudo
-less install. @jimhester seems to be starting down this road?
other thoughts? comments?