-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add readable step id for test cloudbuild steps #2673
Add readable step id for test cloudbuild steps #2673
Conversation
/approve |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Bobgy The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Maybe we can put the IDs first, to increase readability even more. |
@Ark-kun It would be great if we can do that. Do you have any ideas? |
Just change - name: "gcr.io/cloud-builders/docker"
id: "persistenceagent"
args:
["build", "-t", "$_GCR_BASE/persistenceagent", "-f", "backend/Dockerfile.persistenceagent", "."]
waitFor: ["-"] to - id: "persistenceagent"
name: "gcr.io/cloud-builders/docker"
args:
["build", "-t", "$_GCR_BASE/persistenceagent", "-f", "backend/Dockerfile.persistenceagent", "."]
waitFor: ["-"] |
@Ark-kun thanks, I didn't realize you meant readability of this yaml file. SGTM |
* replace table logger with tabulate Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * remove numpy<1.24.0 constraint Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> * loosen protobuf dependency Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com> --------- Signed-off-by: Andrews Arokiam <andrews.arokiam@ideas2it.com>
This should make reading cloudbuild error message a lot easier
Build log looks like the following now, it's clear which step is building which image
This change is