-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Use vendors when go generate #7340
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
Conversation
@techknowlogick Maybe we should do that on v1.10, I will move this to v1.10 so that we could not change the minimal Golang requirement on v1.9. |
Codecov Report
@@ Coverage Diff @@
## master #7340 +/- ##
==========================================
+ Coverage 41.23% 41.23% +<.01%
==========================================
Files 468 468
Lines 63337 63337
==========================================
+ Hits 26114 26116 +2
- Misses 33812 33813 +1
+ Partials 3411 3408 -3
Continue to review full report at Codecov.
|
* use vendors when go generate * update docs about golang minimal requirement from 1.9 to 1.11 * fix build
Since we have store all the dependencies on vendor, I think we should also use them when run
go generate
. This will speed upmake generate
process and reduce failure possible when CI runs.