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
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: