Skip to content

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] authored Aug 25, 2021
1 parent 37e2d39 commit 22b8b6f
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
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 22b8b6f

Please sign in to comment.