only parallelise package builds
This commit is contained in:
parent
25c493d5b9
commit
6db7443844
1 changed files with 93 additions and 76 deletions
|
|
@ -40,6 +40,11 @@ upload_single_binary_to_s3 <- function(
|
|||
|
||||
exists <- s3fs::s3_file_exists(sprintf("%s/%s", remote_bin_path, tarball_name))
|
||||
|
||||
# suppress progressr output here
|
||||
progressr::handlers("void")
|
||||
# don't parallelise
|
||||
future::plan("sequential")
|
||||
|
||||
if ((!exists && !force) || (!exists && force)) {
|
||||
cli::cli_alert("{.fun upload_single_binary_to_s3}: Uploading {.pkg {package_name}} {.field {tag}} to {.path {sprintf('%s/%s', remote_bin_path, tarball_name)}}.")
|
||||
s3fs::s3_file_upload(
|
||||
|
|
|
|||
Loading…
Reference in a new issue