GitHub - eddelbuettel/r-ci: CI for R at Travis, GitHub Actions, Azure Pipelines, ... (original) (raw)

r-ci: Continuous Integration for R at Travis, GitHub, Azure, ...

This is the successor / continuation of the r-travisrepository, which is itself a maintained fork of the (now deprecated) originalr-travis repository by Craig Citro et al. I was an earlycontributor to this project, and quite like its design and features -- so I have been keeping it around, maintained and extended it. It is my 'go-to' CI setup for a few dozen repositories affecting a fairly decent number of users.

Documentation

See the r-ci webpage for a brief overview of usage with GitHub Actions, Travis, Azure DevOps and Docker. See this r^4 blog post for a shortvideo and background slides.

Basic Usage

A minimal example of use with Travis follows:

language: c sudo: required dist: focal

before_install:

install:

script:

This downloads the run.sh script, uses it to bootstrap the test environment, then installs dependencies via install_deps and finally runs tests. For a realistic but real example see e.g. this .travis.yml file of package digest. For another example, see package tidyCpp which shows how to use the run.shscript with Travis CI as well aswith GitHub Actions, or package dang (featured in thevideo mentioned above) Numerous variations are possible: running 'test matrices' across macOS and Linux, using BSPM for binaries (both of those are used by digest, running with several g++versions (as used byRcppSimdjson, ...).

We also use the same approach of downloading run.sh and invoking it for the different steps in with GitHub Actions (e.g. fortidyCpp). There is also an Action for GitHub to download run.shand set it up. Similarly, Azure Pipelines can be used (as was done by a test repo on Azure).

There are also other options of use with PPAs and more---for fullest details see the source of the shell script run.sh.

As of September 2022, we rely on r2u to supply a full set of binaries for CRAN for use on Ubuntu LTS. You can use it via install_deps() or install_all()without having to supply the r-cran-* packages explicitly.

Author

Dirk Eddelbuettel (for this maintained fork)

Craig Citro, Kirill Mueller, Dirk Eddelbuettel, ... (for the original r-travis)