You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the go test ./... instructions don't work because /go is root:root but the VM guest user id vagrant:vagrant so the go tool can't download the dependencies
when adding a such chown -R vagrant:vagrant /go the go tool downloads success, but the build fails because of https://github.com/smartystreets/assertions dependency on Go 1.13 again.
Suggested changes
In the short term, upgrade to Go 1.17 since this is the current version
In the longer term convert to docker for ease of use/speed.
The text was updated successfully, but these errors were encountered:
fgm
pushed a commit
to fgm/hystrix-go
that referenced
this issue
Sep 13, 2021
Problem description
With the current "Build and test" instructions in the readme:
vagrant up
because the https://github.com/smartystreets/assertions package now needs Go 1.13 (forerrors.Is
but the VM provides Go 1.9go test ./...
instructions don't work because/go
isroot:root
but the VM guest user idvagrant:vagrant
so the go tool can't download the dependenciessuch chown -R vagrant:vagrant /go
the go tool downloads success, but the build fails because of https://github.com/smartystreets/assertions dependency on Go 1.13 again.Suggested changes
The text was updated successfully, but these errors were encountered: