Caution
Buildbot no longer supports Python 2.7 on the Buildbot master.
2.5.14.10. GitLabStatusPush¶
from buildbot.plugins import reporters
gl = reporters.GitLabStatusPush('private-token', context='continuous-integration/buildbot',
baseURL='https://git.yourcompany.com')
c['services'].append(gl)
GitLabStatusPush
publishes build status using GitLab Commit Status API.
The build status is published to a specific commit SHA in GitLab.
It requires txrequests package to allow interaction with GitLab Commit Status API.
It uses private token auth, and the token owner is required to have at least developer access to each repository. As a result, we recommend you use https in your base_url rather than http.
-
class
buildbot.reporters.gitlab.
GitLabStatusPush
(token, startDescription=None, endDescription=None, context=None, baseURL=None, verbose=False)¶ - Parameters
token (string) – Private token of user permitted to update status for commits. (can be a Secret)
startDescription (string) – Description used when build starts
endDescription (string) – Description used when build ends
context (string) – Name of your build system, eg. continuous-integration/buildbot
baseURL (string) – the base url of the GitLab host, up to and optionally including the first / of the path. Do not include /api/
verbose (string) – Be more verbose
verify (boolean) – disable ssl verification for the case you use temporary self signed certificates
debug (boolean) – logs every requests and their response