gl_pipelines | R Documentation |
List the jobs with gl_jobs
, the pipelines with gl_pipelines
or
download the most recent artifacts
archive with gl_latest_build_artifact
. For every branch and job combination
only the most recent artifacts archive is available.
gl_pipelines(project, ...)
gl_jobs(project, ...)
gl_latest_build_artifact(
project,
job,
ref_name = get_main(),
save_to_file = tempfile(fileext = ".zip"),
...
)
project |
id (preferred way) or name of the project. Not repository name. |
... |
passed on to |
job |
Name of the job to get build artifacts from |
ref_name |
name of ref (i.e. branch, commit, tag). Default to 'main'. |
save_to_file |
either a path where to store .zip file or NULL if raw should be returned |
returns the file path if save_to_file
is TRUE,
or the archive as raw otherwise.
## Not run:
# connect as a fixed user to a GitLab instance
set_gitlab_connection(
gitlab_url = "https://gitlab.com",
private_token = Sys.getenv("GITLAB_COM_TOKEN")
)
# Get pipelines and jobs information
gl_pipelines(project = "<<your-project-id>>")
gl_jobs(project = "<<your-project-id>>")
gl_latest_build_artifact(project = "<<your-project-id>>", job = "build")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.