-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Replace which with command -v #1320
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/assign @serathius
/lgtm |
/retest |
2 similar comments
/retest |
/retest |
/lgtm |
/retest |
Not sure why this one fails as the changes seem unrelated. I updated the build image in cloudbuild.yaml (which was from 2021) to see if that improves it. |
/retest |
1 similar comment
/retest |
The CI is flaky at the moment, you shouldn't need to change the cloudbuild |
I dropped the cloudbuild image changes |
/retest |
1 similar comment
/retest |
/lgtm |
command -v is POSIX shell and doesn't require an additional binary
Makefile
Outdated
@@ -72,7 +72,7 @@ CONTAINER_ARCH_TARGETS=$(addprefix container-,$(ALL_ARCHITECTURES)) | |||
container: | |||
# Pull base image explicitly. Keep in sync with Dockerfile, otherwise | |||
# GCB builds will start failing. | |||
docker pull golang:1.19.8 | |||
docker pull golang:1.20.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please remove this unrelated change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. :)
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dgrisonnet, mrueg, serathius 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 |
What this PR does / why we need it:
command -v is POSIX shell and doesn't require an additional binary
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #