Resource: Build
A build resource in the Cloud Build API.
At a high level, a Build
describes where to find source code, how to build it (for example, the builder image to run on the source), and where to store the built artifacts.
Fields can include the following variables, which will be expanded when the build is created:
- $PROJECT_ID: the project ID of the build.
- $PROJECT_NUMBER: the project number of the build.
- $LOCATION: the location/region of the build.
- $BUILD_ID: the autogenerated ID of the build.
- $REPO_NAME: the source repository name specified by RepoSource.
- $BRANCH_NAME: the branch name specified by RepoSource.
- $TAG_NAME: the tag name specified by RepoSource.
- $REVISION_ID or $COMMIT_SHA: the commit SHA specified by RepoSource or resolved from the specified branch or tag.
- $SHORT_SHA: first 7 characters of $REVISION_ID or $COMMIT_SHA.
JSON representation |
---|
{ "name": string, "id": string, "projectId": string, "status": enum ( |
Fields | |
---|---|
name |
Output only. The 'Build' name with format: |
id |
Output only. Unique identifier of the build. |
projectId |
Output only. ID of the project. |
status |
Output only. Status of the build. |
statusDetail |
Output only. Customer-readable message about the current status. |
source |
Optional. The location of the source files to build. |
steps[] |
Required. The operations to be performed on the workspace. |
results |
Output only. Results of the build. |
createTime |
Output only. Time at which the request to create the build was received. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
startTime |
Output only. Time at which execution of the build was started. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
finishTime |
Output only. Time at which execution of the build was finished. The difference between finishTime and startTime is the duration of the build's execution. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
timeout |
Amount of time that this build should be allowed to run, to second granularity. If this amount of time elapses, work on the build will cease and the build status will be
Default time is 60 minutes. A duration in seconds with up to nine fractional digits, ending with ' |
images[] |
A list of images to be pushed upon the successful completion of all build steps. The images are pushed using the builder service account's credentials. The digests of the pushed images will be stored in the If any of the images fail to be pushed, the build status is marked |
queueTtl |
TTL in queue for this build. If provided and the build is enqueued longer than this value, the build will expire and the build status will be The TTL starts ticking from createTime. A duration in seconds with up to nine fractional digits, ending with ' |
artifacts |
Artifacts produced by the build that should be uploaded upon successful completion of all build steps. |
logsBucket |
Cloud Storage bucket where logs should be written (see Bucket Name Requirements). Logs file names will be of the format |
sourceProvenance |
Output only. A permanent fixed identifier for source. |
buildTriggerId |
Output only. The ID of the |
options |
Special options for this build. |
logUrl |
Output only. URL to logs for this build in Google Cloud Console. |
substitutions |
Substitutions data for An object containing a list of |
tags[] |
Tags for annotation of a |
secrets[] |
Secrets to decrypt using Cloud Key Management Service. Note: Secret Manager is the recommended technique for managing sensitive data with Cloud Build. Use |
timing |
Output only. Stores timing information for phases of the build. Valid keys are:
If the build does not specify source or images, these keys will not be included. An object containing a list of |
approval |
Output only. Describes this build's approval configuration, status, and result. |
serviceAccount |
IAM service account whose credentials will be used at build runtime. Must be of the format |
availableSecrets |
Secrets and secret environment variables. |
warnings[] |
Output only. Non-fatal problems encountered during the execution of the build. |
gitConfig |
Optional. Configuration for git operations. |
failureInfo |
Output only. Contains information about the build when status=FAILURE. |
Methods |
|
---|---|
|
Approves or rejects a pending build. |
|
Cancels a build in progress. |
|
Starts a build with the specified configuration. |
|
Returns information about a previously requested build. |
|
Lists previously requested builds. |
|
Creates a new build based on the specified build. |