Go mod可以很好地下载,但是golint在假定的已下载依赖项上失败

时间:2019-06-24 14:21:36

标签: go gitlab-ci go-modules

在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:“开启”

.anchors:   -&inject-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中,但似乎不起作用

任何想法我应该如何解决?

1 个答案:

答案 0 :(得分:0)

Gitlab将所有路径解释为相对于项目根目录的路径,因此,如果您的项目是myproject,则$GOPATH/pkg/mod/会转换为myproject/$GOPATH/pkg/mod/,但go工具实际安装软件包的位置是/$GOPATH/pkg/mod/(直接在根目录下)。

您可以通过将GOPATH设置到项目目录中的某个位置来解决此问题;例如

export GOPATH="$CI_PROJECT_DIR/pkg/mod"

然后,您可以在整个管道中使用此路径。