Learn R Programming

⚠️There's a newer version (0.4.0) of this package.Take me there.

tic

The goal of tic is to enhance and simplify working with continuous integration (CI) systems like Travis CI or AppVeyor for R projects. To learn more about CI, read this blog post and our Getting Started vignette.

The most important improvements over existing solutions are:

  1. Deployment to a Git repository is greatly simplified. Update your repository with results from the CI build.

  2. Support for R packages and other kinds of project (bookdown, blogdown, etc.), with predefined templates. Set up your project to deploy rendered versions of your book or blog with a single push to Git.

  3. Workflow specification in a single .R file, regardless of CI system used.
    Forget about .yml files or web browser configurations.

Installation

It can be installed from Github with:

# install.packages("remotes")
remotes::install_github("ropenscilabs/tic")

Setup

By calling travis::use_ci() a production ready CI setup is initialized, tailored to your specific R project. The created templates will use the providers https://travis-ci.org and https://appveyor.com. For an R package, the following steps will be set up for the CI workflow:

  • Installation of required dependencies for the project
  • Satisfying build-time dependencies of steps to be run in all CI stages
  • Running rcmdcheck::rcmdcheck()
  • Building of a pkgdown site, with deployment to the docs/ directory of the master branch
  • Running a code coverage and uploading it to codecov.io

See the Getting Started vignette for more information and links to minimal example repositories for various R projects (package, blogdown, bookdown and more).

Examples

Vignettes

Limitations

The setup functions in this package assume Git as version control system, and GitHub as platform. Automated setup works best if the project under test is located in the root of the Git repository. Multi-project repositories are not supported, see the comment by @jwijffels for guidance to work around this limitation.


Copy Link

Version

Version

0.2.13.9013

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Maintainer

Kirill Müller

Last Published

September 8th, 2021

Functions in tic (0.2.13.9013)

run_all_stages

Emulate a CI run locally
step_build_pkgdown

Step: Build pkgdown documentation
ci

The current CI environment
step_do_push_deploy

Step: Perform push deploy
tic-package

tic: Tasks Integrating Continuously: CI-Agnostic Workflow Definitions
DSL

tic's domain-specific language
do_bookdown

Build a bookdown book
use_tic

Initialize CI testing using tic
Deprecated

Deprecated functions
stages

Predefined stages
step_install_pkg

Step: Install packages
step_add_to_drat

Step: Add built package to a drat
step_hello_world

Step: Hello, world!
encode_private_key

Encode a private RSA key
TicStep

The base class for all steps
base64serialize

Helpers for converting R objects to strings and back
prepare_all_stages

Prepare all stages
step_install_ssh_keys

Step: Install an SSH key
repo

Shortcuts for accessing CRAN-like repositories
step_push_deploy

Step: Setup and perform push deploy
get_public_key

Get public RSA key
step_test_ssh

Step: Test SSH connection
step_write_text_file

Step: Write a text file
do_package_checks

Add default checks for packages
step_setup_push_deploy

Step: Setup push deploy
load_from_file

Process a tic.R file
do_pkgdown

Build pkgdown documentation
macro

Macros
step_rcmdcheck

Step: Check a package
step_setup_ssh

Step: Setup SSH
step_add_to_known_hosts

Step: Add to known hosts
step_run_code

Step: Run arbitrary R code
step_build_bookdown

Step: Build a bookdown book
run_stage

Run a stage
dsl_get

Storage for stages and steps
dsl

tic's domain-specific language
reexports

Objects exported from other packages