我正在尝试构建在此repo中找到的teamcity普罗米修斯出口商。
在自述文件中,它指示我执行以下命令来构建项目-
docker run --rm -v "$PWD":/go/src/github.com/guidewire/teamcity_exporter -w /go/src/github.com/guidewire/teamcity_exporter -e GOOS=linux -e GOARCH=amd64 golang:1.8 go build -o bin/teamcity_exporter -v
但是失败,并显示以下错误-
teamcity_exporter.go:15:2: cannot find package "github.com/guidewire/teamcity-go-bindings" in any of:
/go/src/github.com/guidewire/teamcity_exporter/vendor/github.com/guidewire/teamcity-go-bindings (vendor tree)
/usr/local/go/src/github.com/guidewire/teamcity-go-bindings (from $GOROOT)
/go/src/github.com/guidewire/teamcity-go-bindings (from $GOPATH)
teamcity_exporter.go:16:2: cannot find package "github.com/orcaman/concurrent-map" in any of:
/go/src/github.com/guidewire/teamcity_exporter/vendor/github.com/orcaman/concurrent-map (vendor tree)
/usr/local/go/src/github.com/orcaman/concurrent-map (from $GOROOT)
/go/src/github.com/orcaman/concurrent-map (from $GOPATH)
collector.go:6:2: cannot find package "github.com/prometheus/client_golang/prometheus" in any of:
/go/src/github.com/guidewire/teamcity_exporter/vendor/github.com/prometheus/client_golang/prometheus (vendor tree)
/usr/local/go/src/github.com/prometheus/client_golang/prometheus (from $GOROOT)
/go/src/github.com/prometheus/client_golang/prometheus (from $GOPATH)
teamcity_exporter.go:18:2: cannot find package "github.com/prometheus/common/log" in any of:
/go/src/github.com/guidewire/teamcity_exporter/vendor/github.com/prometheus/common/log (vendor tree)
/usr/local/go/src/github.com/prometheus/common/log (from $GOROOT)
/go/src/github.com/prometheus/common/log (from $GOPATH)
teamcity_exporter.go:19:2: cannot find package "github.com/prometheus/common/version" in any of:
/go/src/github.com/guidewire/teamcity_exporter/vendor/github.com/prometheus/common/version (vendor tree)
/usr/local/go/src/github.com/prometheus/common/version (from $GOROOT)
/go/src/github.com/prometheus/common/version (from $GOPATH)
config.go:8:2: cannot find package "gopkg.in/yaml.v2" in any of:
/go/src/github.com/guidewire/teamcity_exporter/vendor/gopkg.in/yaml.v2 (vendor tree)
/usr/local/go/src/gopkg.in/yaml.v2 (from $GOROOT)
/go/src/gopkg.in/yaml.v2 (from $GOPATH)
我尝试到处寻找go软件包管理器,并使用它们来预安装软件包(经过dep和govendor,但似乎都不适合我的用例)。
还在github仓库中打开了一个issue,但是还有其他一些问题没有得到任何回应,所以我没有寄予希望。
我对go不太熟悉,所以我希望这里的某人可能对我所缺少的东西有所了解。
谢谢!
答案 0 :(得分:4)
我建议将$('.collapse').show();
更改为go build
。那应该获取所有依赖关系,还将构建二进制并将其放入go get
中。 $GOPATH/bin
希望一切都已经准备就绪。