status property

String? status
getter/setter pair

Status of the build.

Output only. Possible string values are:

  • "STATUS_UNKNOWN" : Status of the build is unknown.
  • "PENDING" : Build has been created and is pending execution and queuing. It has not been queued.
  • "QUEUED" : Build or step is queued; work has not yet begun.
  • "WORKING" : Build or step is being executed.
  • "SUCCESS" : Build or step finished successfully.
  • "FAILURE" : Build or step failed to complete successfully.
  • "INTERNAL_ERROR" : Build or step failed due to an internal cause.
  • "TIMEOUT" : Build or step took longer than was allowed.
  • "CANCELLED" : Build or step was canceled by a user.
  • "EXPIRED" : Build was enqueued for longer than the value of queue_ttl.

Implementation

core.String? status;