From 98a5f10cc950afaba853714c6e144edcaa2dab4f Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 9 Dec 2024 20:44:29 -0600 Subject: [PATCH] try 2 checks at a time --- .ci/run-r-revdepchecks.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/run-r-revdepchecks.R b/.ci/run-r-revdepchecks.R index 53be85fc0e99..5ea0323229bd 100644 --- a/.ci/run-r-revdepchecks.R +++ b/.ci/run-r-revdepchecks.R @@ -4,11 +4,11 @@ check_dir <- commandArgs(trailing = TRUE)[[1L]] tools::check_packages_in_dir( dir = check_dir - , check_args = c("--run-dontrun", "--run-donttest") + , check_args = c("--no-manual", "--run-dontrun", "--run-donttest") , clean = TRUE , all = TRUE # only check one package at a time, to avoid oversubscribing CPUs - , Ncpus = 1L + , Ncpus = 2L # only test the libraries found in `check_dir` , reverse = FALSE )