[character]
Passed to rcmdcheck::rcmdcheck().
Default for Travis and local runs: c("--no-manual", "--as-cran").
Default for Appveyor:
c("--no-manual", "--as-cran", "--no-vignettes", "--no-build-vignettes", "--no-multiarch").
build_args
[character]
Passed to rcmdcheck::rcmdcheck().
Default for Travis and local runs: "--force".
Default for Appveyor: c("--no-build-vignettes", "--force").
error_on
[character]
Whether to throw an error on R CMD check failures. Note that the check is
always completed (unless a timeout happens), and the error is only thrown
after completion. If "never", then no errors are thrown. If "error", then
only ERROR failures generate errors. If "warning", then WARNING failures
generate errors as well. If "note", then any check failure generated an
error.
repos
[character]
Passed to rcmdcheck::rcmdcheck(), default:
repo_default().
timeout
[numeric]
Passed to rcmdcheck::rcmdcheck(), default:
Inf.
check_dir
[character] Path specifying the directory for R CMD
check. Defaults to project root for easy upload of artifacts.
Updating of (dependency) packages
Packages shipped with the R-installation will not be updated as they will be
overwritten by the Travis R-installer in each build.
If you want these package to be updated, please add the following
step to your workflow: add_code_step(remotes::update_packages("<pkg>")).