-
Notifications
You must be signed in to change notification settings - Fork 252
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
Makefile: Introduce GO_BUILD variable #560
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
maintainer-s-little-helper
bot
added
the
dont-merge/needs-release-note-label
PR is blocked until the release note is set
label
May 27, 2021
gandro
added
the
release-note/misc
This PR makes changes that have no direct user impact.
label
May 27, 2021
maintainer-s-little-helper
bot
removed
the
dont-merge/needs-release-note-label
PR is blocked until the release note is set
label
May 27, 2021
rolinh
reviewed
May 27, 2021
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.
Thanks! Could we also update the bench
and test
targets to use $(GO)
?
gandro
force-pushed
the
pr/gandro/use-go-build-variable
branch
from
May 27, 2021 07:58
ad0f84b
to
0084a06
Compare
Good catch. Done and tested! |
kaworu
approved these changes
May 27, 2021
maintainer-s-little-helper
bot
added
the
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
label
May 27, 2021
kaworu
added
needs-rebase
This PR needs to be rebased because it has merge conflicts.
and removed
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
labels
May 27, 2021
maintainer-s-little-helper
bot
added
the
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
label
May 27, 2021
rolinh
removed
the
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
label
May 27, 2021
This allows users to overwrite the GO environment variable while still using CGO_ENABLED=false. This for example is useful when testing pre-releases of the Go compiler. Signed-off-by: Sebastian Wicki <sebastian@isovalent.com>
gandro
force-pushed
the
pr/gandro/use-go-build-variable
branch
from
May 27, 2021 09:20
0084a06
to
4efa821
Compare
gandro
added
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
and removed
needs-rebase
This PR needs to be rebased because it has merge conflicts.
labels
May 27, 2021
rolinh
approved these changes
May 27, 2021
tklauser
added a commit
to cilium/cilium-cli
that referenced
this pull request
Jul 14, 2021
This allows users to overwrite the GO environment variable while still using CGO_ENABLED=0. This for example is useful when testing pre-releases of the Go toolchain, e.g. `make GO=go1.17rc1`. Follows cilium/hubble#560 Signed-off-by: Tobias Klauser <tobias@cilium.io>
tklauser
added a commit
to cilium/cilium-cli
that referenced
this pull request
Jul 14, 2021
This allows users to overwrite the GO environment variable while still using CGO_ENABLED=0. This for example is useful when testing pre-releases of the Go toolchain, e.g. `make GO=go1.17rc1`. Follows cilium/hubble#560 Signed-off-by: Tobias Klauser <tobias@cilium.io>
aditighag
pushed a commit
to aditighag/cilium-cli
that referenced
this pull request
Apr 21, 2023
This allows users to overwrite the GO environment variable while still using CGO_ENABLED=0. This for example is useful when testing pre-releases of the Go toolchain, e.g. `make GO=go1.17rc1`. Follows cilium/hubble#560 Signed-off-by: Tobias Klauser <tobias@cilium.io>
michi-covalent
pushed a commit
to michi-covalent/cilium
that referenced
this pull request
May 30, 2023
This allows users to overwrite the GO environment variable while still using CGO_ENABLED=0. This for example is useful when testing pre-releases of the Go toolchain, e.g. `make GO=go1.17rc1`. Follows cilium/hubble#560 Signed-off-by: Tobias Klauser <tobias@cilium.io>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
ready-to-merge
This PR has passed all tests and received consensus from code owners to merge.
release-note/misc
This PR makes changes that have no direct user impact.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This allows users to overwrite the GO environment variable while still
using CGO_ENABLED=false. This for example is useful when testing
pre-releases of the Go compiler.