-
Notifications
You must be signed in to change notification settings - Fork 450
Makefile modification #249
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
zerosnake0
commented
May 6, 2020
- Add GOPROXY env for slow go get operation
- Golang version is configurable
- Remove duplicate docker tag target
Codecov Report
@@ Coverage Diff @@
## master #249 +/- ##
==========================================
- Coverage 66.07% 66.05% -0.03%
==========================================
Files 184 184
Lines 9105 9105
==========================================
- Hits 6016 6014 -2
- Misses 2325 2326 +1
- Partials 764 765 +1
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #249 +/- ##
==========================================
- Coverage 66.07% 66.00% -0.07%
==========================================
Files 184 184
Lines 9105 9105
==========================================
- Hits 6016 6010 -6
- Misses 2325 2329 +4
- Partials 764 766 +2
Continue to review full report at Codecov.
|
@@ -5,6 +5,9 @@ GO = go | |||
BUILD_FLAGS = -gcflags '-N -l' | |||
BUILD_QUIET ?= -q | |||
|
|||
GOLANG_IMAGE ?= golang:1.14 |
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.
golang image is configured in multiple places - like in the dockerfiles used in make images
Do you plan to change all the places?
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.
I had a look at the dockerfiles used in make images
, they are based on debian:10 and all binaries are copied from the prebuild LINUX_BINS, which is already affected by the modification. I did not find any other place using a versioned Go yet.
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.
Sorry I take it back. This is good then.