View source: R/travis-builds.R
Functions around completed or pending Travis CI builds and jobs.
travis_get_builds()
calls the "builds" API for the current repository.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | travis_get_builds(repo = github_repo(), token = travis_token(repo),
...)
travis_restart_build(build_id, repo = github_repo(),
token = travis_token(repo), quiet = FALSE)
travis_restart_last_build(repo = github_repo(),
token = travis_token(repo), quiet = FALSE)
travis_cancel_build(build_id, repo = github_repo(),
token = travis_token(repo), quiet = FALSE)
travis_get_jobs(build_id, repo = github_repo(),
token = travis_token(repo))
travis_restart_job(job_id, repo = github_repo(),
token = travis_token(repo), quiet = FALSE)
travis_cancel_job(job_id, repo = github_repo(),
token = travis_token(repo), quiet = FALSE)
travis_debug_job(job_id, log_output = FALSE, repo = github_repo(),
token = travis_token(repo), quiet = FALSE)
travis_get_log(job_id, repo = github_repo(),
token = travis_token(repo), quiet = FALSE)
travis_delete_log(job_id, repo = github_repo(),
token = travis_token(repo), quiet = FALSE)
|
repo |
|
token |
|
... |
see |
build_id |
|
quiet |
|
job_id |
|
log_output |
Show the debugging output in the publicly visible log? When
set to |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.