Learn R Programming

googleCloudRunner (version 0.2.0)

cr_build_source: Build a source object

Description

Build a source object

Usage

cr_build_source(x)

# S3 method for gar_RepoSource cr_build_source(x)

# S3 method for gar_StorageSource cr_build_source(x)

Arguments

x

Examples

Run this code
# NOT RUN {
repo <- RepoSource("my_repo", branchName = "master")
gcs  <- StorageSource("my_code.tar.gz","gs://my-bucket")

cr_build_source(repo)
cr_build_source(gcs)

my_gcs_source <- cr_build_source(gcs)
my_repo_source <- cr_build_source(repo)

# }
# NOT RUN {
build1 <- cr_build("cloudbuild.yaml", source = my_gcs_source)
build2 <- cr_build("cloudbuild.yaml", source = my_repo_source)

# }
# NOT RUN {
# }

Run the code above in your browser using DataLab