模块不会在golang测试/构建过程中进行缓存/保存。您如何解决这个问题?

时间:2019-02-17 05:56:31

标签: go module

在我的一个项目中,使用go模块。每当我做任何事情时,它都开始不断地搜索模块。我包含许多模块,但是只有一个模块可以这样做(见下文)。我该如何解决?

> go test -run TestUodate
go: finding github.com/mohae/deepcopy latest
PASS
ok    example.com/example/stuff   0.698s

1 个答案:

答案 0 :(得分:1)

此症状类似于https://golang.org/issue/29773中的症状,该症状固定在头部(但不适用于go1.13beta1或更早的发行版)。使用从头开始构建的go命令进行尝试,您可以使用gotip工具轻松获得该命令。

如果您仍然使用gotip看到此消息,请通过填写https://golang.org/issue/new上的模板来打开一个问题。