英文:
Circleci Ubuntu 14.04 build image has multiple gopath values
问题
CircleCI Ubuntu 14.04构建镜像的GOPATH环境变量具有以下值:
/home/ubuntu/.go_workspace:/usr/local/go_workspace
并且没有GOROOT环境变量。这是一个错误吗?
英文:
The CircleCI Ubuntu 14.04 build image has the following value for the GOPATH env var:
/home/ubuntu/.go_workspace:/usr/local/go_workspace
and no GOROOT env var. Is this an error?
答案1
得分: 3
GOROOT
是一个环境变量,用于指定Go二进制发行版的安装位置。如果Go安装在默认文件夹中,您不需要声明这个环境变量。根据CIRCLE CI文档,Go安装在默认文件夹中,所以您不应该遇到任何问题。
英文:
GOROOT
is the enviroment variable that specify where the go binary distribution is installed, if is installed in the default folder you are not required to declare this enviroment variable.
And, according to CIRCLE CI docs Go is installed in the default folder so you shouldn't have any problem.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论