Go mod 下载得很好,但 golint 在假定下载的依赖项上失败了
Posted
技术标签:
【中文标题】Go mod 下载得很好,但 golint 在假定下载的依赖项上失败了【英文标题】:Go mod is downloading well, but golint is failing on supposed downloaded dependencies 【发布时间】:2019-11-06 09:07:48 【问题描述】:在 Gitlab CI 中,我需要指定 GITLAB_DEPLOY_TOKEN
,因为我有一些私有存储库。这适用于编译步骤。
但是当我执行 golint 时,它会再次下载所有依赖项,并且它会在私有的依赖项上失败。我可以添加相同的git config
指令,
图片:golang 变量: PACKAGE_PATH:/go/src/gitlab.com/company/sam/daemon PACKAGE_API_NAME:registry.gitlab.com/company/sam/daemon REGISTRY_URL:https://registry.gitlab.com DOCKER_DRIVER:覆盖 GO111MODULE:“开启”
.锚点: - &注入-gopath mkdir -p $(目录名 $PACKAGE_PATH) && ln -s $CI_PROJECT_DIR $PACKAGE_PATH && cd $PACKAGE_PATH
compile:
stage: build
before_script:
- *inject-gopath
- git config --global url."https://oauth:$GITLAB_DEPLOY_TOKEN@gitlab.com".insteadOf https://gitlab.com
- go mod tidy
script: GOOS=linux GOARCH=arm GOARM=7 go build -o release/daemon .
artifacts:
name: "binary-$CI_PIPELINE_ID"
paths:
- $GOPATH/pkg/mod/
expire_in: 1 hour
lint:
stage: test
before_script:
- apt install -y curl git
- go get github.com/golang/lint
- *inject-gopath
script:
- $GOPATH/bin/golint -set_exit_status $(go list ./...)
allow_failure: true
我读到 here 说 go 模块缓存在 $GOPATH/pkg/mod
中,但它似乎不起作用
知道我应该如何解决它吗?
【问题讨论】:
您确定使用模块构建吗?您是否设置了 GO111MODULE=on? 是的,我做到了,而且我有 go modules 输出,所以毫无疑问 你可能需要gitlab来缓存jobs之间的依赖docs.gitlab.com/ee/ci/caching/… 我曾经用工件,用供应商文件夹来做,而且效果很好......我可以试一试 你确定golint
支持模块吗? (github.com/golang/lint/issues/409)
【参考方案1】:
Gitlab 将所有路径解释为相对于项目根目录,所以如果你的项目是 myproject
,$GOPATH/pkg/mod/
会转换为 myproject/$GOPATH/pkg/mod/
,但 go 工具实际安装包的位置是 /$GOPATH/pkg/mod/
(直接在根下)。
您可以通过将 GOPATH 设置为项目目录中的某个位置来解决此问题;例如
export GOPATH="$CI_PROJECT_DIR/pkg/mod"
然后,您可以在整个管道中使用此路径。
【讨论】:
以上是关于Go mod 下载得很好,但 golint 在假定下载的依赖项上失败了的主要内容,如果未能解决你的问题,请参考以下文章
使用go mod下载时导致“模式匹配无模块依赖”的原因是什么?