Skip to content
This repository has been archived by the owner on Dec 31, 2023. It is now read-only.

Commit

Permalink
feat: add script field to BuildStep message (#154)
Browse files Browse the repository at this point in the history
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 392761119

Source-Link: googleapis/googleapis@3cd708e

Source-Link: googleapis/googleapis-gen@05d5619
  • Loading branch information
gcf-owl-bot[bot] committed Aug 25, 2021
1 parent 94ee4f9 commit 8336413
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions google/cloud/devtools/cloudbuild_v1/types/cloudbuild.py
Expand Up @@ -361,6 +361,10 @@ class BuildStep(proto.Message):
this time, build step status is only updated on
build completion; step status is not updated in
real-time as the build progresses.
script (str):
A shell script to be executed in the step.
When script is provided, the user cannot specify
the entrypoint or args.
"""

name = proto.Field(proto.STRING, number=1,)
Expand All @@ -376,6 +380,7 @@ class BuildStep(proto.Message):
pull_timing = proto.Field(proto.MESSAGE, number=13, message="TimeSpan",)
timeout = proto.Field(proto.MESSAGE, number=11, message=duration_pb2.Duration,)
status = proto.Field(proto.ENUM, number=12, enum="Build.Status",)
script = proto.Field(proto.STRING, number=19,)


class Volume(proto.Message):
Expand Down

0 comments on commit 8336413

Please sign in to comment.