Skip to content
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

cmd/go: go mod tidy can break things #32894

Closed
rogpeppe opened this issue Jul 2, 2019 · 5 comments
Closed

cmd/go: go mod tidy can break things #32894

rogpeppe opened this issue Jul 2, 2019 · 5 comments

Comments

@rogpeppe
Copy link
Contributor

rogpeppe commented Jul 2, 2019

go version devel +d410642f49 Mon Jul 1 21:30:23 2019 +0000 linux/amd64
go env Output
$ go env
GO111MODULE="auto"
GOARCH="amd64"
GOBIN=""
GOCACHE="/home/rog/.cache/go-build"
GOENV="/home/rog/.config/go/env"
GOEXE=""
GOFLAGS=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GONOPROXY="github.com/heetch"
GONOSUMDB="github.com/heetch"
GOOS="linux"
GOPATH="/home/rog/src/go"
GOPRIVATE=""
GOPROXY="https://proxy.golang.org,direct"
GOROOT="/home/rog/go"
GOSUMDB="sum.golang.org"
GOTMPDIR=""
GOTOOLDIR="/home/rog/go/pkg/tool/linux_amd64"
GCCGO="gccgo"
AR="ar"
CC="gcc"
CXX="g++"
CGO_ENABLED="1"
GOMOD="/home/rog/src/go/src/github.com/heetch/universe/src/services/driver-state/state/go.mod"
CGO_CFLAGS="-g -O2"
CGO_CPPFLAGS=""
CGO_CXXFLAGS="-g -O2"
CGO_FFLAGS="-g -O2"
CGO_LDFLAGS="-g -O2"
PKG_CONFIG="pkg-config"
GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build613282230=/tmp/go-build -gno-record-gcc-switches"

I ran the following commands. After go mod init, the build succeeds, but after running go mod tidy, the build fails and the consul dependency requirement is no longer respected.

% go mod init
go: creating new go.mod: module 
go: copying requirements from glide.lock
% go install ./...
% go list -m all | grep consul
github.com/hashicorp/consul v1.5.1
github.com/hashicorp/consul/api v1.1.0
github.com/hashicorp/consul/sdk v0.1.1
% go mod tidy
% go list -m all | grep consul
github.com/hashicorp/consul v1.0.7
github.com/hashicorp/consul/api v1.1.0
github.com/hashicorp/consul/sdk v0.1.1
% go install ./...
build private-module/cmd/private-cmd: cannot load github.com/hashicorp/consul/api: ambiguous import: found github.com/hashicorp/consul/api in multiple modules:
	github.com/hashicorp/consul v1.0.7 (/home/rog/src/go/pkg/mod/github.com/hashicorp/consul@v1.0.7/api)
	github.com/hashicorp/consul/api v1.1.0 (/home/rog/src/go/pkg/mod/github.com/hashicorp/consul/api@v1.1.0)
@rogpeppe
Copy link
Contributor Author

rogpeppe commented Jul 2, 2019

I have a somewhat minimal reproducer of this which I can send privately.

@bcmills
Copy link
Contributor

bcmills commented Jul 2, 2019

I'm curious: does go mod download produce the same sort of transition? (My guess is that it does, because I think I know where this bug comes from...)

@bcmills
Copy link
Contributor

bcmills commented Jul 2, 2019

Oh, wait. go mod tidy downgrades consul, presumably because it doesn't provide any packages in the transitive import graph. That makes this a duplicate of #27899, albeit with an interesting mechanism leading to the ambiguous import.

@bcmills
Copy link
Contributor

bcmills commented Jul 2, 2019

In the meantime, this could have been avoided within the github.com/hashicorp/consul/api module, by adding a require on some newer version of github.com/hashicorp/consul as described in https://golang.org/issue/27858#issuecomment-425089484.

@bcmills
Copy link
Contributor

bcmills commented Jul 2, 2019

Duplicate of #27899

@bcmills bcmills marked this as a duplicate of #27899 Jul 2, 2019
@bcmills bcmills closed this as completed Jul 2, 2019
@golang golang locked and limited conversation to collaborators Jul 1, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants