Skip to content

Commit

Permalink
it seems 9000 is still too big
Browse files Browse the repository at this point in the history
  • Loading branch information
yihui committed Aug 15, 2024
1 parent 8d7e092 commit 100b3ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/revcheck.R
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,8 @@ cloud_check = function(pkgs = NULL, ...) {
tgz = pkg_build() # tarball
pkg = gsub('_.*$', '', tgz)
if (length(pkgs) == 0) pkgs = setdiff(get_fun('cran_revdeps')(pkg, bioc = TRUE), pkg)
N = 9000 # max is 10000 packages per batch job
pkgs = head(pkgs, 100)
N = 1000 # max is 10000 packages per batch job
jobs = broken = NULL
rver = format(getRversion())
check = function(...) {
Expand Down

0 comments on commit 100b3ca

Please sign in to comment.