-
Notifications
You must be signed in to change notification settings - Fork 813
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 vendor grpc third_party to be referenced by protos #1023
Conversation
Build Succeeded 👏 Build Id: 2c4f847a-86f6-4944-8e55-31f90c35b712 The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
/assign @devjgm |
@roberthbailey: GitHub didn't allow me to assign the following users: devjgm. Note that only googleforgames members, repo collaborators and people who have commented on this issue/PR can be assigned. Additionally, issues/PRs can only have 10 assignees at the same time. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Build Succeeded 👏 Build Id: 8daaaa8c-6d00-43dc-9a4e-fe248b873f76 The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Just so I'm 100% clear, did you add this in manually? Happy to approve this going through, I'm just concerned it might get accidentally deleted on a |
Sounds like this is a fun(?) common problem: golang/go#26366 |
Exactly, running go mod vendor recreates the vendor directory therefore removes the third_party directory. I followed this to add the third_party directory, which is exactly what I needed: Ideally we should remove the dependency to vendor and only use go.mod? |
Got it - so in a previous life, someone already encountered this 👍 Maybe in a future PR we could do something like I'm assuming in a future PR we are going to remove the protos in /protos and update the tooling to reference this |
Good idea. |
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.
👍
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: markmandel, pooneh-m The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
New changes are detected. LGTM label has been removed. |
Build Succeeded 👏 Build Id: 4278e263-bf32-4cdb-aced-7c69ae74a7e3 The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Following these steps: https://github.com/googleforgames/agones/blob/master/build/README.md#dependencies
Third_party directory does not get added with go mod vendor as described.