-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Remove custom GOCACHE location #4995
Conversation
Signed-off-by: Yuri Shkuro <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4995 +/- ##
==========================================
- Coverage 95.63% 95.61% -0.02%
==========================================
Files 319 319
Lines 18786 18786
==========================================
- Hits 17966 17963 -3
- Misses 659 661 +2
- Partials 161 162 +1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Yuri Shkuro <[email protected]>
@@ -26,9 +26,10 @@ jobs: | |||
|
|||
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |||
|
|||
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe | |||
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 |
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.
sometimes dependabot adds version at the end, but not everywhere. I wonder if adding it manually once will cause it to keep adding it.
GOBUILD=GOCACHE=$(GOCACHE) CGO_ENABLED=0 installsuffix=cgo $(GO) build -trimpath | ||
GOTEST_QUIET=GOCACHE=$(GOCACHE) $(GO) test $(RACE) | ||
GOBUILD=CGO_ENABLED=0 installsuffix=cgo $(GO) build -trimpath | ||
GOTEST_QUIET=$(GO) test $(RACE) |
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.
Don't know why we had this GOCACHE override in the first place, it's better to use the system's cache location.
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.
Looks good, if not we can always revert :)
Which problem is this PR solving?
Description of the changes
How was this change tested?