- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我无法使用 gitlab-ci 构建我的 golang 项目。当在项目目录中运行 dep init 时,它只获取我的部分依赖项,并且当尝试构建二进制文件时失败并显示找不到依赖项的错误。当我在 osx 上构建我的项目,或运行 docker golang image 在 osx 上编译项目时,它构建成功。
我的 .gitlab-ci.yml 文件:
image: golang:1.9.2
variables:
REPO_NAME: storage
before_script:
- mkdir -p $GOPATH/src/$REPO_NAME
- ln -svf $CI_PROJECT_DIR/* $GOPATH/src/$REPO_NAME
- cd $GOPATH/src/$REPO_NAME
- go get -u github.com/golang/dep/cmd/dep
- dep init
stages:
- compile
compile:
stage: compile
script:
- go build -o $CI_PROJECT_DIR/main
artifacts:
paths:
- main
gitlab-runner 任务的输出:
[0KRunning with gitlab-runner 10.2.0 (0a75cdd1)
on docker-auto-scale (4e4528ca)
[0;m[0KUsing Docker executor with image golang:1.9.2 ...
[0;m[0KUsing docker image sha256:5f8b4886692c4897e1f0855043da1896fe4f1e6762fccddfa2114a2fdfa1674f for predefined container...
[0;m[0KPulling docker image golang:1.9.2 ...
[0;m[0KUsing docker image golang:1.9.2 ID=sha256:1a34fad76b34f485ebc72d32044cafe963ae00c8e80dbf4115bafabd31e93ff6 for build container...
[0;msection_start:1511994825:prepare_script
[0KRunning on runner-4e4528ca-project-4778312-concurrent-0 via runner-4e4528ca-srm-1511994698-320032ac...
section_end:1511994828:prepare_script
[0Ksection_start:1511994828:get_sources
[0K[32;1mCloning repository...[0;m
Cloning into '/builds/group-name/service-storage'...
[32;1mChecking out f59f57e4 as master...[0;m
[32;1mSkipping Git submodules setup[0;m
section_end:1511994831:get_sources
[0Ksection_start:1511994831:restore_cache
[0Ksection_end:1511994832:restore_cache
[0Ksection_start:1511994832:download_artifacts
[0Ksection_end:1511994834:download_artifacts
[0Ksection_start:1511994834:build_script
[0K[32;1m$ mkdir -p $GOPATH/src/$REPO_NAME[0;m
[32;1m$ ln -svf $CI_PROJECT_DIR/* $GOPATH/src/$REPO_NAME[0;m
'/go/src/storage/Dockerfile' -> '/builds/group-name/service-storage/Dockerfile'
'/go/src/storage/aws' -> '/builds/group-name/service-storage/aws'
'/go/src/storage/db' -> '/builds/group-name/service-storage/db'
'/go/src/storage/logHelper' -> '/builds/group-name/service-storage/logHelper'
'/go/src/storage/main' -> '/builds/group-name/service-storage/main'
'/go/src/storage/main.go' -> '/builds/group-name/service-storage/main.go'
'/go/src/storage/responses' -> '/builds/group-name/service-storage/responses'
'/go/src/storage/routers' -> '/builds/group-name/service-storage/routers'
[32;1m$ cd $GOPATH/src/$REPO_NAME[0;m
[32;1m$ go get -u github.com/golang/dep/cmd/dep[0;m
[32;1m$ dep init[0;m
Using ^1.2.0 as constraint for direct dep github.com/joho/godotenv
Locking in v1.2.0 (a79fa1e) for direct dep github.com/joho/godotenv
Using ^1.6.0 as constraint for direct dep github.com/gorilla/mux
Locking in v1.6.0 (7f08801) for direct dep github.com/gorilla/mux
Locking in v1.1 (1ea2538) for transitive dep github.com/gorilla/context
[32;1m$ go build -o $CI_PROJECT_DIR/main[0;m
aws/aws.go:16:2: cannot find package "github.com/aws/aws-sdk-go/aws" in any of:
/go/src/storage/vendor/github.com/aws/aws-sdk-go/aws (vendor tree)
/usr/local/go/src/github.com/aws/aws-sdk-go/aws (from $GOROOT)
/go/src/github.com/aws/aws-sdk-go/aws (from $GOPATH)
aws/aws.go:17:2: cannot find package "github.com/aws/aws-sdk-go/aws/credentials" in any of:
/go/src/storage/vendor/github.com/aws/aws-sdk-go/aws/credentials (vendor tree)
/usr/local/go/src/github.com/aws/aws-sdk-go/aws/credentials (from $GOROOT)
/go/src/github.com/aws/aws-sdk-go/aws/credentials (from $GOPATH)
aws/aws.go:18:2: cannot find package "github.com/aws/aws-sdk-go/aws/session" in any of:
/go/src/storage/vendor/github.com/aws/aws-sdk-go/aws/session (vendor tree)
/usr/local/go/src/github.com/aws/aws-sdk-go/aws/session (from $GOROOT)
/go/src/github.com/aws/aws-sdk-go/aws/session (from $GOPATH)
aws/aws.go:19:2: cannot find package "github.com/aws/aws-sdk-go/service/s3" in any of:
/go/src/storage/vendor/github.com/aws/aws-sdk-go/service/s3 (vendor tree)
/usr/local/go/src/github.com/aws/aws-sdk-go/service/s3 (from $GOROOT)
/go/src/github.com/aws/aws-sdk-go/service/s3 (from $GOPATH)
routers/v1/images/imageFunctions/save_images.go:23:2: cannot find package "github.com/disintegration/imaging" in any of:
/go/src/storage/vendor/github.com/disintegration/imaging (vendor tree)
/usr/local/go/src/github.com/disintegration/imaging (from $GOROOT)
/go/src/github.com/disintegration/imaging (from $GOPATH)
db/dbFunctions/db_functions.go:7:2: cannot find package "github.com/satori/go.uuid" in any of:
/go/src/storage/vendor/github.com/satori/go.uuid (vendor tree)
/usr/local/go/src/github.com/satori/go.uuid (from $GOROOT)
/go/src/github.com/satori/go.uuid (from $GOPATH)
db/db.go:13:2: cannot find package "gopkg.in/mgo.v2" in any of:
/go/src/storage/vendor/gopkg.in/mgo.v2 (vendor tree)
/usr/local/go/src/gopkg.in/mgo.v2 (from $GOROOT)
/go/src/gopkg.in/mgo.v2 (from $GOPATH)
db/db.go:14:2: cannot find package "gopkg.in/mgo.v2/bson" in any of:
/go/src/storage/vendor/gopkg.in/mgo.v2/bson (vendor tree)
/usr/local/go/src/gopkg.in/mgo.v2/bson (from $GOROOT)
/go/src/gopkg.in/mgo.v2/bson (from $GOPATH)
section_end:1511994846:build_script
[0Ksection_start:1511994846:after_script
[0Ksection_end:1511994847:after_script
[0K[31;1mERROR: Job failed: exit code 1
[0;m
当在 osx 上本地运行时,我看到 dep init 提取了所有依赖项,之后我可以成功运行 go build 并且它将构建二进制文件。
username@hostname storage (master) $ dep init
Locking in v1.1 (1ea2538) for transitive dep github.com/gorilla/context
Locking in v1.32.0 (32e4c1e) for transitive dep github.com/go-ini/ini
Locking in master (f7e31b4) for transitive dep golang.org/x/image
Using ^1.6.0 as constraint for direct dep github.com/gorilla/mux
Locking in v1.6.0 (7f08801) for direct dep github.com/gorilla/mux
Using ^1.1.0 as constraint for direct dep github.com/satori/go.uuid
Locking in v1.1.0 (879c588) for direct dep github.com/satori/go.uuid
Using ^1.2.0 as constraint for direct dep github.com/joho/godotenv
Locking in v1.2.0 (a79fa1e) for direct dep github.com/joho/godotenv
Using ^1.12.36 as constraint for direct dep github.com/aws/aws-sdk-go
Locking in v1.12.36 (5bcc0a2) for direct dep github.com/aws/aws-sdk-go
Locking in (0b12d6b5) for transitive dep github.com/jmespath/go-jmespath
Using v2 as constraint for direct dep gopkg.in/mgo.v2
Locking in v2 (3f83fa5) for direct dep gopkg.in/mgo.v2
Using ^1.2.4 as constraint for direct dep github.com/disintegration/imaging
Locking in v1.2.4 (dd50a3e) for direct dep github.com/disintegration/imaging
我还尝试使用 docker golang 镜像在本地 OSX 上运行,它编译得很好:
docker run --rm -v "$PWD":/go/src/storage -w /go/src/storage golang:1.9.2 go get -u github.com/golang/dep/cmd/dep && dep init
docker run --rm -v "$PWD":/go/src/storage -w /go/src/storage golang:1.9.2 go build -v -o main
问题只存在于 gitlab-ci 上运行。
尝试了各种 golang 图像、alpine 等。同样的结果,它总是因缺少相同的依赖项而失败。
更新和解决方案示例:
正如用户@vardius 指出和评论并随后做出回答,问题出在符号链接(symbolic link)上。
将我在 .gitlab-ci.yml 中的行替换为:
- ln -svf $CI_PROJECT_DIR/* $GOPATH/src/$REPO_NAME
到
- cp -rf $CI_PROJECT_DIR/* $GOPATH/src/$REPO_NAME/
所有内容都已编译。
最佳答案
它现在可以在 CI 服务器上运行的原因可能是符号链接(symbolic link)。正如本期中所说的例子 Symlinked project root is not handled as I would expect .
您可能想要硬拷贝您的项目文件并试一试。我认为它应该可以解决您的问题。
这个答案是我和@user991 在问题评论中导致解决方案的谈话的总结。
关于docker - 无法使用docker镜像在gitlab-ci中编译golang项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47563115/
我正在使用以下dockerfile: FROM ubuntu:14.04 MAINTAINER xxx xxx # SSH RUN apt-get update && apt-get install
我运行了docker-compose build celery,(经过数小时的尝试,我的连接不良)成功了。 app Dockerfile的前80%是相同的,但不会重复使用缓存。从我可以浏览的内容来看,
我可以使用以下命令成功创建 Docker 注册表 v2 服务:docker service create 然后我使用 docker Push 将一些图像推送到该服务。 当我通过 curl localh
我正在尝试使用 gitlab 构建 CI,我从 docker 的 docker 镜像开始,我的前端存储库没有任何问题,但现在使用相同的 gitlab-ci 配置文件,我有此守护程序错误。 这是构建的输
用例: 我们在 Jenkins 中有几个“发布作业”build 和 push 应用程序的 Docker 镜像到 docker registry,更新各种文件中的项目版本,最后将发布标签推送到相应的 G
当我尝试构建我的 docker 文件时,docker 返回以下错误: [+] Building 0.0s (1/2)
docker-in-docker 的作者在此博客中建议不要将此图像用于 CI 目的: jpetazzo/Using Docker-in-Docker for your CI or testing en
我创建了一个 Dockerfile 来在 Docker 中运行 Docker: FROM ubuntu:16.04 RUN apt-get update && \ apt-get in
我尝试为 Docker 镜像定位一个特定标签。我怎样才能在命令行上做到这一点?我想避免下载所有图像,然后删除不需要的图像。 在 Ubuntu 官方版本中,https://registry.hub.do
我正在尝试在docker中运行docker。唯一的目的是实验性的,我绝不尝试实现任何功能,我只想检查docker从另一个docker运行时的性能。 我通过Mac上的boot2docker启动docke
docker-compose.yml version: "3" services: daggr: image: "docker.pvt.com/test/daggr:stable"
我有一个非常具体的开发环境用例。在一些代码中,我启动了一个容器来抓取页面并检索在容器中运行的服务(Gitlab)的 token 。 现在,我希望 Dockerize 运行它的代码。具体来说,类似: o
之前已经问过这个问题,但我不确定当时是否可以使用docker-compose文件完成docker堆栈部署。 由于最新版本支持使用compose将服务部署到堆栈,因此,我无法理解dab文件的值。 我检查
我在一次采访中被问到这个问题,但无法回答。也没有找到任何相关信息。 最佳答案 正如 Docker 文档中所述,Docker 注册表是: [...] a hosted service containin
有没有一种方法可以将具有给定扩展名的所有文件复制到Docker中的主机?就像是 docker cp container_name:path/to/file/in/docker/*.png path/o
我的日志驱动程序设置为journald。使用日志记录驱动程序时,daemon.json文件中的日志级别配置会影响日志吗?使用docker logs 时仅会影响容器日志? 例如,docker和journ
我最近开始使用Docker + Celery。我还共享了full sample codes for this example on github,以下是其中的一些代码段,以帮助解释我的观点。 就上下文
运行docker build .命令后,尝试提交构建的镜像,但收到以下错误 Step 12 : CMD activator run ---> Using cache ---> efc82ff1ca
我们有docker-compose.yml,其中包含Kafka,zookeeper和schema registry的配置 当我们启动docker compose时,出现以下错误 docker-comp
我是Docker的新手。是否可以在Docker Hub外部建立Docker基本镜像存储库?假设将它们存储在您的云中,而不是拥有DH帐户?谢谢。 最佳答案 您可以根据需要托管自己的注册表。可以在Depl
我是一名优秀的程序员,十分优秀!