Learn R Programming

googleCloudRunner (version 0.5.0)

cr_build_source: Build a source object

Description

This creates a source object for a build. Note you may instead want to use sources connected to a Build Trigger in which case see cr_buildtrigger_repo

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