Sync binaries with Google bucket.

gcloud_sync_to_bucket(src_path, bucket)

Arguments

src_path

character(1) path to the directory where source information are stored.

bucket

character(1) bucket name for the google storage bucket, it must include the FULL path of the CRAN style repo.

Value

`gcloud_sync_to_bucket()` return invisibly, but a message is shown on screen on successfully tranferred files.

Details

Sync binaries created by the `kube_install()` function into the Google bucket which is provided. The google bucket should be appropriately created in a CRAN style manner with the correct public permissions.

See also

`BiocKuberInstall::gcloud_create_cran_bucket()`

Examples

if (FALSE) { gcloud_sync_to_bucket( src_path = "/host/binaries", bucket = "bioconductor_docker/packages/3.12/bioc/src/contrib/" ) gcloud_sync_to_bucket( src_path = "/host/logs", bucket = "bioconductor_docker/packages/3.13/bioc/src/package_logs/" ) }